diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/.gitignore b/.gitignore index eecca2f..643f820 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,44 @@ abrt-1.1.13.tar.gz /abrt-2.6.2.tar.gz /abrt-2.7.0.tar.gz /abrt-2.7.1.tar.gz +/abrt-2.7.2.tar.gz +/abrt-2.8.0.tar.gz +/abrt-2.8.1.tar.gz +/abrt-2.8.2.tar.gz +/abrt-2.9.0.tar.gz +/abrt-2.10.0.tar.gz +/abrt-2.10.1.tar.gz +/abrt-2.10.2.tar.gz +/abrt-2.10.3.tar.gz +/abrt-2.10.4.tar.gz +/abrt-2.10.5.tar.gz +/abrt-2.10.6.tar.gz +/abrt-2.10.7.tar.gz +/abrt-2.10.8.tar.gz +/abrt-2.10.9.tar.gz +/abrt-2.10.10.tar.gz +/abrt-2.11.0.tar.gz +/abrt-2.11.1.tar.gz +/abrt-2.12.0.tar.gz +/abrt-2.12.1.tar.gz +/abrt-2.12.2.tar.gz +/abrt-2.13.0.tar.gz +/abrt-2.14.0.tar.gz +/abrt-2.14.1.tar.gz +/abrt-2.14.2.tar.gz +/abrt-2.14.3.tar.gz +/abrt-2.14.4.tar.gz +/abrt-2.14.5.tar.gz +/abrt-2.14.6.tar.gz +/abrt-2.15.0.tar.gz +/abrt-2.15.1.tar.gz +/abrt-2.16.0.tar.gz +/abrt-2.16.1.tar.gz +/abrt-2.17.0.tar.gz +/abrt-2.17.1.tar.gz +/abrt-2.17.2.tar.gz +/abrt-2.17.4.tar.gz +/abrt-2.17.5.tar.gz +/abrt-2.17.6.tar.gz +/abrt-2.17.7.tar.gz +/abrt-2.17.8.tar.gz diff --git a/0001-ccpp-drop-e-from-the-core_pattern.patch b/0001-ccpp-drop-e-from-the-core_pattern.patch deleted file mode 100644 index 742f9ee..0000000 --- a/0001-ccpp-drop-e-from-the-core_pattern.patch +++ /dev/null @@ -1,99 +0,0 @@ -From 51531e9ea72af09571688a20f00e55cad5fe9c3a Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 9 Feb 2016 17:55:29 +0100 -Subject: [PATCH] ccpp: drop %e from the core_pattern - -The argument is no longer need and it must be placed either at the end -of the command or enclosed with '' as it can contain white space. - -Threads can have an arbitrary name: - man 3 pthread_setname_np - -Signed-off-by: Jakub Filak ---- - src/hooks/abrt-hook-ccpp.c | 16 ++++++++-------- - src/hooks/abrt-install-ccpp-hook.in | 12 +----------- - 2 files changed, 9 insertions(+), 19 deletions(-) - -diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c -index 8f1b813..dfe9526 100644 ---- a/src/hooks/abrt-hook-ccpp.c -+++ b/src/hooks/abrt-hook-ccpp.c -@@ -143,9 +143,9 @@ static struct dump_dir *dd; - * %u - uid - * %g - gid - * %t - UNIX time of dump -- * %e - executable filename -- * %i - crash thread tid - * %P - global pid -+ * %I - crash thread tid -+ * %e - executable filename (can contain white spaces) - * %% - output one "%" - */ - /* Hook must be installed with exactly the same sequence of %c specifiers. -@@ -661,9 +661,9 @@ int main(int argc, char** argv) - - if (argc < 8) - { -- /* percent specifier: %s %c %p %u %g %t %e %P %i*/ -- /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9]*/ -- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME GLOBAL_PID [TID]", argv[0]); -+ /* percent specifier: %s %c %p %u %g %t %P %T */ -+ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] */ -+ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME GLOBAL_PID GLOBAL_TID", argv[0]); - } - - /* Not needed on 2.6.30. -@@ -704,8 +704,8 @@ int main(int argc, char** argv) - /* set to max possible >0 value */ - ulimit_c = ~((off_t)1 << (sizeof(off_t)*8-1)); - } -- const char *global_pid_str = argv[8]; -- pid_t pid = xatoi_positive(argv[8]); -+ const char *global_pid_str = argv[7]; -+ pid_t pid = xatoi_positive(argv[7]); - - user_pwd = get_cwd(pid); /* may be NULL on error */ - log_notice("user_pwd:'%s'", user_pwd); -@@ -867,7 +867,7 @@ int main(int argc, char** argv) - signal_no, signame, "dumping core"); - - pid_t tid = -1; -- const char *tid_str = argv[9]; -+ const char *tid_str = argv[8]; - if (tid_str) - { - tid = xatoi_positive(tid_str); -diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in -index 707c57d..660c209 100755 ---- a/src/hooks/abrt-install-ccpp-hook.in -+++ b/src/hooks/abrt-install-ccpp-hook.in -@@ -11,9 +11,7 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" - SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" - HOOK_BIN="@libexecdir@/abrt-hook-ccpp" - # Must match percent_specifiers[] order in abrt-hook-ccpp.c: --PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" --# Same, but with bogus "executable name" parameter --PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" -+PATTERN="|$HOOK_BIN %s %c %p %u %g %t %P %I" - - # core_pipe_limit specifies how many dump_helpers can run at the same time - # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing -@@ -39,14 +37,6 @@ start() { - cur=`cat "$PATTERN_FILE"` - cur_first=`printf "%s" "$cur" | sed 's/ .*//'` - -- # Is there a %e (executable name) in old pattern anywhere? -- if test x"${cur#*%e}" = x"${cur}"; then -- # No. Can use PATTERN with less risk of overflow -- # on expansion (executable names can be LONG). -- # Overflow would cause kernel to abort coredump. BAD. -- PATTERN="$PATTERN1" -- fi -- - $verbose && printf "cur:'%s'\n" "$cur" - # Is it already installed? - if test x"$cur_first" != x"|$HOOK_BIN"; then # no --- -2.5.0 - diff --git a/0003-Translation-updates.patch b/0003-Translation-updates.patch deleted file mode 100644 index 8ae6b32..0000000 --- a/0003-Translation-updates.patch +++ /dev/null @@ -1,92383 +0,0 @@ -From 7967724138d015dd71d9e788b59d0b3f03bb2513 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 11 Feb 2016 14:51:00 +0100 -Subject: [PATCH] Translation updates - -Signed-off-by: Jakub Filak ---- - po/ar.po | 690 ++++++++++++++++++------- - po/as.po | 711 ++++++++++++++++++------- - po/ast.po | 685 ++++++++++++++++++------- - po/bg.po | 693 ++++++++++++++++++------- - po/bn.po | 687 ++++++++++++++++++------- - po/bn_IN.po | 713 +++++++++++++++++++------- - po/bs.po | 685 ++++++++++++++++++------- - po/ca.po | 1028 ++++++++++++++++++++++++------------- - po/cs.po | 842 +++++++++++++++++++++--------- - po/da.po | 685 ++++++++++++++++++------- - po/de.po | 746 +++++++++++++++++++-------- - po/el.po | 685 ++++++++++++++++++------- - po/en_GB.po | 699 ++++++++++++++++++------- - po/es.po | 845 +++++++++++++++++++++--------- - po/et.po | 693 ++++++++++++++++++------- - po/eu.po | 687 ++++++++++++++++++------- - po/fa.po | 685 ++++++++++++++++++------- - po/fi.po | 754 +++++++++++++++++++-------- - po/fr.po | 939 ++++++++++++++++++++++++---------- - po/gl.po | 697 ++++++++++++++++++------- - po/gu.po | 711 ++++++++++++++++++------- - po/he.po | 685 ++++++++++++++++++------- - po/hi.po | 713 +++++++++++++++++++------- - po/hu.po | 736 ++++++++++++++++++-------- - po/ia.po | 685 ++++++++++++++++++------- - po/id.po | 685 ++++++++++++++++++------- - po/it.po | 714 +++++++++++++++++++------- - po/ja.po | 761 +++++++++++++++++++-------- - po/ka.po | 685 ++++++++++++++++++------- - po/km.po | 1275 ++++++++++++++++++++++++++++++--------------- - po/kn.po | 711 ++++++++++++++++++------- - po/ko.po | 825 ++++++++++++++++++++--------- - po/lt.po | 701 ++++++++++++++++++------- - po/lv.po | 687 ++++++++++++++++++------- - po/ml.po | 727 ++++++++++++++++++-------- - po/mr.po | 711 ++++++++++++++++++------- - po/nb.po | 685 ++++++++++++++++++------- - po/nds.po | 685 ++++++++++++++++++------- - po/nl.po | 722 ++++++++++++++++++-------- - po/or.po | 714 +++++++++++++++++++------- - po/pa.po | 707 ++++++++++++++++++------- - po/pl.po | 934 ++++++++++++++++++++++----------- - po/pt.po | 858 ++++++++++++++++++++++--------- - po/pt_BR.po | 712 +++++++++++++++++++------- - po/ru.po | 785 +++++++++++++++++++--------- - po/sk.po | 805 ++++++++++++++++++++--------- - po/sq.po | 1236 +++++++++++++++++++++++++++++--------------- - po/sr.po | 1565 ++++++++++++++++++++++++++++++++++++++------------------ - po/sr@latin.po | 685 ++++++++++++++++++------- - po/sv.po | 723 ++++++++++++++++++-------- - po/ta.po | 712 +++++++++++++++++++------- - po/te.po | 711 ++++++++++++++++++------- - po/tg.po | 685 ++++++++++++++++++------- - po/th.po | 703 ++++++++++++++++++------- - po/tr.po | 687 ++++++++++++++++++------- - po/uk.po | 720 ++++++++++++++++++-------- - po/ur.po | 685 ++++++++++++++++++------- - po/vi.po | 687 ++++++++++++++++++------- - po/zh_CN.po | 709 ++++++++++++++++++------- - po/zh_TW.po | 716 +++++++++++++++++++------- - 60 files changed, 32905 insertions(+), 12787 deletions(-) - -diff --git a/po/ar.po b/po/ar.po -index 43f1c97..650d734 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -4,22 +4,23 @@ - # - # Translators: - # Jiří Moskovčák , 2011 -+# Khalid Moharrum , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-11-03 07:57-0500\n" -+"Last-Translator: Khalid Moharrum \n" - "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ar/)\n" - "Language: ar\n" - "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " - "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "تقرير" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -296,60 +323,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +400,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1074,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1092,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1113,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1136,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1154,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1171,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1201,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1217,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1777,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1855,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1921,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1972,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/as.po b/po/as.po -index 2f44fc6..ce31175 100644 ---- a/po/as.po -+++ b/po/as.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/as/)\n" - "Language: as\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,102 +32,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "সংবাদ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +137,17 @@ msgstr "" - "\n" - "এপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ডাইৰেকটৰি চুৰ কৰাৰ আগত সোধিব" -@@ -158,12 +169,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা " --"কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে " --"কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে " --"অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -208,10 +217,6 @@ msgstr "" - "নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগত সোধিব" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -219,15 +224,15 @@ msgstr "" - "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি " - "কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "সংবেদনশীল তথ্যৰ বাবে ব্যক্তিগত টিকেট অনুৰোধ কৰক" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "অসম্পূৰ্ণ সমস্যাবোৰ অধিসূচীত কৰক" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -237,6 +242,22 @@ msgstr "" - "আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT " - "এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "বন্ধ কৰক (_C)" -@@ -262,14 +283,14 @@ msgstr "বিষয়ে" - msgid "Quit" - msgstr "প্ৰস্থান কৰক" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -281,11 +302,11 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যা ডাইৰেকটৰি" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "সংৰূপ নথিপত্ৰ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -299,24 +320,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog -লে লগ কৰক" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ কৰক" - -@@ -324,62 +346,52 @@ msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ - msgid "Unknown error" - msgstr "অজ্ঞাত ত্ৰুটি" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "প্ৰমাণীত নহয়" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "পৰিবৰ্তনৰ বাবে সমস্যাক অভিগম কৰিব নোৱাৰি" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "ডাইৰেকটৰি Chowning কৰোতে ব্যৰ্থ হল। অধিক বিৱৰণসমূহৰ বাবে চিস্টেম লগসমূহ " - "নীৰিক্ষণ কৰক।" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ৰ আকাৰ প্ৰাপ্ত কৰিব পৰা নগল" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "কোনো সমস্যা স্থান অৱশিষ্ট নাই" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপাদান '%s' মচিব নোৱাৰি" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -388,12 +400,12 @@ msgid "" - msgstr "" - "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "নিষ্ক্ৰিয়তাৰ NUM ছেকেণ্ডসমূহ পিছত প্ৰস্থান কৰিব" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চলাব লাগিব।" - -@@ -419,18 +431,22 @@ msgstr "ডিমোনাইজ নকৰিব" - msgid "Log to syslog even with -d" - msgstr "-d -ৰ হৈতেও syslog -লে লগ কৰক" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR ত EVENT চলাওক" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ব্যৱহাৰকাৰীৰ সৈতে প্ৰত্যক্ষভাৱে যোগাযোগ কৰক" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -468,74 +484,75 @@ msgstr "সঙ্গামী কৰ্মীসকলৰ সংখ্যা। - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "তৰ্কৰ অবৈধ সংখ্যা" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -555,83 +572,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "এটা ডাইৰেকটৰি নহয়: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "বাদ দিয়া হৈছে: '{0}' (স্লেশৰ সৈতে আৰম্ভ হয়)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "বাদ দিয়া হৈছে: '{0}' (ডটৰ সৈতে আৰম্ভ হয়)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "বাদ দিয়া হৈছে: '{0}' (অন্তৰ্ভুক্ত কৰে ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "বাদ দিয়া হৈছে: '{0}' (স্পেইচ অন্তৰ্ভুক্ত কৰে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "বাদ দিয়া হৈছে: '{0}' (টেব অন্তৰ্ভুক্ত কৰে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ডাইৰেকটৰিক '{0}' লৈ পৰিবৰ্তন কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "অজ্ঞাত ফাইল ধৰণ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' ত কাৰ্য্যকৰী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ক '{1}' লৈ স্থানান্তৰ কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ক '{1}' লৈ কপি কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' ত সত্যাপন ত্ৰুটি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' আনপেক কৰা হৈছে" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ক আনপেক কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' ক সফলভাৱে প্ৰক্ৰিয়াকৰণ কৰা হল" - -@@ -655,18 +672,26 @@ msgstr "'%s' chown কৰিব নোৱাৰি: %s" - msgid "Deleting problem directory failed: %s" - msgstr "সমস্যা ডাইৰেকটৰি মচি পেলোৱা ব্যৰ্থ হল: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -713,7 +738,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s -ৰ বাবে বেকট্ৰেইচ বিশ্লেষণ ব্যৰ্থ হল" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "স্খলন থ্ৰেড পোৱা নগল" - -@@ -818,7 +843,7 @@ msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱ - msgid "Oops text extracted successfully" - msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -826,6 +851,38 @@ msgstr "" - "কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটিসমূহ চিনাক্ত কৰা হৈছিল।\n" - "ই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -944,7 +1001,36 @@ msgstr "সন্ধানহিন debuginfo নথিপত্ৰ: {0}" - msgid "All debuginfo files are available" - msgstr "সকলো debuginfo ফাইল উপলব্ধ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -954,7 +1040,7 @@ msgstr "" - "পাৰে)। যদি আপোনাৰ উত্তৰ 'নহয়' হয়, এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰা হব। " - "(ই তথ্যৰ এটা বৃহত পৰিমাণ ডাউনল'ড কৰিব পাৰে)।" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1190,7 +1276,8 @@ msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " -@@ -1201,16 +1288,18 @@ msgstr "PROBLEM ত নিষ্কাষিত তথ্য সংৰক্ষ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "সমস্যা ডাইৰেকটৰি বিশ্ব পঢ়িব পৰা কৰক" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "সমস্যা ডাইৰেকটৰিৰ সৃষ্টিকৰণক ১ প্ৰতি ছেকেণ্ডলৈ থ্ৰটল কৰক" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" - -@@ -1220,9 +1309,13 @@ msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প - msgid "Failed to compile regex" - msgstr "regex কমপাইল কৰিবলে ব্যৰ্থ" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাতকৈ অধিক oops পোৱা গল" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1241,6 +1334,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1264,11 +1358,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1282,16 +1378,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1299,18 +1398,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1329,14 +1431,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1345,12 +1450,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1360,58 +1511,62 @@ msgstr "" - "\n" - "FILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "প্ৰামাণিক আউটপুটত পোৱা স্খলন তথ্য প্ৰিন্ট কৰক" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "প্ৰতিটো প্ৰাপ্ত স্খলনৰ বাবে DIR ত সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1945,7 +2100,7 @@ msgstr "NSS বন্ধ কৰিবলে ব্যৰ্থ।" - msgid "Sleeping for %d seconds" - msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰাত" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1953,7 +2108,7 @@ msgstr "" - "ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ\n" - "সমস্যা কাৰনেল ব্যৱস্থাপকৰ দ্বাৰা ঠিক কৰিব নোৱাৰি।" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1961,7 +2116,7 @@ msgstr "" - "এটা কাৰনেল সমস্যা দেখা দিছে, কিন্তু আপোনাৰ হাৰ্ডৱেৰ অসমৰ্থিত, সেয়েহে কাৰনেল " - "ব্যৱস্থাপকসকলে এই সমস্যা ঠিক কৰিব নোৱাৰে।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1970,24 +2125,24 @@ msgstr "" - "এটা কাৰনেল সমস্যা দেখা দিলে, কিন্তু আপোনাৰ কাৰনেল আবিলিত (flags:%s)। কাৰনেল " - "ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " লেতেৰা মডিউলসমূহ: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "বাগ আইডিসমূহৰ তালিকা" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "এটা bodhi চাৰ্ভাৰ url ধাৰ্য্য কৰক" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "এটা উন্মোচন ধাৰ্য্য কৰক" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1997,20 +2152,20 @@ msgstr "" - "\n" - "bodhi চাৰ্ভাৰত আপডেইটসমূহ সন্ধান কৰক" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "আপডেইসমূহ সন্ধান কৰা হৈছে" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "এই পেকেইজৰ বাবে কোনো আপডেইট পোৱা নগল" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "পেকেইজৰ স্থানীয় সংস্কৰণ উপলব্ধ আপডেইটসমূহতকে নতুন" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2038,66 +2193,67 @@ msgstr "প্ৰিন্ট প্ৰাপ্ত oopses" - msgid "Delete files with found oopses" - msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ মচি পেলাওক" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' এ এটাতকৈ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "সমস্যাসমূহ দেখুৱাওক [in DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "সমস্যা ডাইৰেকটৰি DIR আতৰাওক" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR ত সমস্যা তথ্য বিশ্লেষণ কৰি সংবাদন কৰক" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ৰ বিষয়ে তথ্য প্ৰিন্ট কৰক" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ৰিন্ট কৰক" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰিয়া কৰক" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "কেৱল সংবাদন-নকৰা সমস্যাবোৰ তালিকাভুক্ত কৰক" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "বিৱৰিত সংবাদ দেখুৱাওক" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকৈ শেহতীয়া সমস্যাসমূহ তালিকাভুক্ত কৰক" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পতকৈ পুৰনি সমস্যাসমূহ তালিকাভুক্ত কৰক" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2108,55 +2264,65 @@ msgstr "" - "ব্যৱহাৰকাৰী ৰূপে\n" - "'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ইয়াতকৈ ডাঙৰ লিখনীক এব্ৰিজ দেখুৱা হব" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "এই ধৰণৰ কোনো সমস্যা ডাইৰেকটৰি '%s' নাই" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "কেৱল সমস্যা গণনাক কোনো বাৰ্তা নহোৱাকৈ প্ৰিন্ট কৰক" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকে অধিক শেহতীয়া সমস্যাসমূহ প্ৰিন্ট কৰক" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT এ %u সমস্যা(সমূহ) চিনাক্ত কৰিছে। অধিক তথ্যৰ বাবে চলাওক: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' মচি পেলোৱা হৈছে" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "আৰু [options] DIR সংবাদন কৰক..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "সংবাদন কৰাৰ পিছত PROBLEM_DIR আতৰাওক" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' মচি পেলোৱা হৈছে" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" -@@ -2167,27 +2333,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "কাৰ্য্যসমূহ: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' সংবাদন কৰা" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "পৰৱৰ্তী সমস্যাৰ বাবে ENTER টিপক:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since তৰ্ক নাথাকিলে, সকলো চিনাক্ত কৰা সমস্যাবোৰ পুনৰাবৃত্তি হয়।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিনাক্ত কৰা সমস্যাবোৰ নিৰ্বাচন কৰে" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ast.po b/po/ast.po -index fa46b52..1b75f51 100644 ---- a/po/ast.po -+++ b/po/ast.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/ast/)\n" - "Language: ast\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informe" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bg.po b/po/bg.po -index 80dfd29..5205c5c 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: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,102 +28,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Не мога да взема собствеността на '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Съобщи" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -133,6 +133,17 @@ msgstr "" - "\n" - "Аплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -154,7 +165,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -187,30 +200,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -236,14 +261,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -255,11 +280,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Директория с проблема" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Конфигурационен файл" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -273,24 +298,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [опции]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Запис в системния журнал" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Добавяй имената на програмите в записа" - -@@ -298,60 +324,50 @@ msgstr "Добавяй имената на програмите в записа" - msgid "Unknown error" - msgstr "Непозната грешка" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' не е валидна директория с проблем" -+msgid "'%s' is not a valid element name" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' не е валидна директория с проблем" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Неупълномощен" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -361,12 +377,12 @@ msgstr "" - "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, " - "собственик на името.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Изход след NUM секунди бездействие" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Тази програма трябва да бъде стартирана като root." - -@@ -387,18 +403,22 @@ msgstr "Да не преминава в режим демон" - msgid "Log to syslog even with -d" - msgstr "Записвай в системния журнал дори и при -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Стартирай EVENT върху DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -428,73 +448,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -506,68 +527,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -591,18 +612,26 @@ msgstr "Не мога да chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Изтриването на директория с проблем се провали: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -647,7 +676,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Разбора на обратното проследяване за %s се провали" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -741,12 +770,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -860,14 +921,43 @@ msgstr "Липсващ debuginfo файл: {0}" - msgid "All debuginfo files are available" - msgstr "Всички debuginfo файлове са на разположение" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1090,7 +1180,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Също като -d DumpLocation, DumpLocation е зададено в abrt.conf" - -@@ -1100,16 +1191,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Направи директорията с проблема достъпна за четене от всички" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Отпечатва търсените низове на стандартния изход и излиза" - -@@ -1118,8 +1211,12 @@ msgstr "Отпечатва търсените низове на стандарт - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1139,6 +1236,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1162,11 +1260,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1180,16 +1280,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1197,18 +1300,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1227,14 +1333,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1243,12 +1352,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1258,58 +1413,62 @@ msgstr "" - "\n" - "Извлечи Xorg срива от FILE (или стандартния вход)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Отпечатай намерените данни за срив на стандартния изход" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1838,19 +1997,19 @@ msgstr "Провал при изключване на NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1859,24 +2018,24 @@ msgstr "" - "Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). " - "Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Списък id-та на бъгове" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Задайте url на bodhi сървър" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Задайте издание" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1886,20 +2045,20 @@ msgstr "" - "\n" - "Търси за обновления в bodhi сървър" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Търсене на обновления" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Няма намерени обновления за този пакет" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Версията на локалния пакет е по-нова от наличните обновления" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1921,65 +2080,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Употреба: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Премахни директорията с проблем DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Анализирай и рапортувай данните за проблем в DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Отпечатай информация за DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Покажи детайлен рапорт" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1987,49 +2147,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2038,24 +2208,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bn.po b/po/bn.po -index 7584e3c..d50e4aa 100644 ---- a/po/bn.po -+++ b/po/bn.po -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -25,7 +25,7 @@ msgstr "" - "language/bn/)\n" - "Language: bn\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -35,102 +35,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "রিপোর্ট" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -141,6 +141,17 @@ msgstr "" - "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " - "অ্যাপ্লেট\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -162,7 +173,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -195,30 +208,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -244,14 +269,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -263,11 +288,11 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যাযুক্ত ডিরেক্টরি" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -281,24 +306,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" - -@@ -306,60 +332,50 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -367,12 +383,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -393,18 +409,22 @@ msgstr "ডেমন তৈরি করা হবে না" - msgid "Log to syslog even with -d" - msgstr "-d সহযোগেও syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -434,73 +454,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -512,68 +533,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -597,18 +618,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -653,7 +682,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -748,12 +777,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -868,14 +929,43 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" - msgid "All debuginfo files are available" - msgstr "সকল debuginfo ফাইল উপলব্ধ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1095,7 +1185,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " -@@ -1107,16 +1198,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1125,8 +1218,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1146,6 +1243,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1169,11 +1267,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1187,16 +1287,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1204,18 +1307,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1234,14 +1340,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1250,70 +1359,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1840,19 +1999,19 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1861,44 +2020,44 @@ msgstr "" - "কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) " - "হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1920,65 +2079,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1986,49 +2146,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2037,24 +2207,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bn_IN.po b/po/bn_IN.po -index c42d4ba..5f6d6df 100644 ---- a/po/bn_IN.po -+++ b/po/bn_IN.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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 "" - "abrt/language/bn_IN/)\n" - "Language: bn-IN\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -36,102 +36,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "রিপোর্ট" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -142,6 +142,17 @@ msgstr "" - "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " - "অ্যাপ্লেট\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -162,18 +173,15 @@ msgstr "সংক্ষিপ্ত রিপোর্টিং" - msgid "Silent shortened reporting" - msgstr "নীরব সংক্ষিপ্ত রিপোর্টিং" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান " --"সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক " --"ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই " --"বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -221,29 +229,24 @@ msgstr "" - " এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি " - "দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "কোর-ডাম্প অাপলোড করার অাগে জিজ্ঞাসা করুন" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "সংবেদনশীল তথ্যের জন্য ব্যক্তিগত টিকিটের অনুরোধ জানান" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "অসম্পূর্ণ সমস্যাগুলি জানান" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -253,6 +256,22 @@ msgstr "" - "করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি " - "জমা দেওয়ার অনুমতি দেবে না।" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -279,14 +298,14 @@ msgstr "সম্বন্ধে" - msgid "Quit" - msgstr "প্রস্থান করুন" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -298,11 +317,11 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যাযুক্ত ডিরেক্টরি" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -316,24 +335,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" - -@@ -341,61 +361,51 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম - msgid "Unknown error" - msgstr "অজানা ত্রুটি" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' উপাদান সংশোধন করা যায় না" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "অনুমোদিত নয়" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' উপাদান সংশোধন করা যায় না" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' এর মাপ পাওয়া যায় না" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "কোনো সমস্যা স্পেস পড়ে নেই" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -405,12 +415,12 @@ msgstr "" - "'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো " - "পরিসেবা চলছে কি না।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" - -@@ -436,18 +446,22 @@ msgstr "ডেমন তৈরি করা হবে না" - msgid "Log to syslog even with -d" - msgstr "-d সহযোগেও syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ব্যবহারকারীর সাথে সরাসরি যোগাযোগ করুন" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -487,90 +501,91 @@ msgstr "একসাথে উদ্ভূত ওয়ার্কারের - msgid "Maximal cache size in MiB. Default is " - msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "প্রমাণীকরণ বন্ধ করে" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support ব্যবহারকারীর নাম" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support পাসওয়ার্ড, দেওয়া না থাকলে, তা দিতে বলা হবে" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL শংসাপত্রের পাথ বা শংসাপত্রের ধরন" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "অাপনাকে --password -এর জন্য --username ও নির্দিষ্ট করতে হবে" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - "অাপনি --username বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - "অাপনি --username বা --anonymous -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - "অাপনি --anonymous বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "অজানা বিকল্প মান: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "পাসওয়ার্ড:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "পাসওয়ার্ড না দিয়ে এগিয়ে যেতে পারবেন না\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL ক্লায়েন্ট প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "বেনামে স্বয়ংক্রিয় ভাবে জানানো" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -590,83 +605,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "একটি ডিরেক্টরি নয়: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্ল্যাশ দিয়ে শুরু)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ডট দিয়ে শুরু)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (বিশিষ্ট ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্পেস রয়েছে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ট্যাব রয়েছে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ডিরেক্টরি '{0}'-এ পরিবর্তন করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "অজানা ফাইল ধরন: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' -এ ওয়ার্কিং ডিরেক্টরি তৈরি করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}', '{1}' -এ সরানো সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}', '{1}'-এ অনুলিপি করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}'-এ যাচাইকরণ ত্রুটি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' অান-প্যাক করা হচ্ছে" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ডিরেক্টরি তৈরি করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" - -@@ -690,18 +705,26 @@ msgstr "'%s'-কে chown করতে ব্যর্থ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -747,7 +770,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ক্র্যাশ থ্রেড খুঁজে পাওয়া যায়নি" - -@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" - msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -862,6 +885,38 @@ msgstr "" - "কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\n" - "এটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -979,7 +1034,36 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" - msgid "All debuginfo files are available" - msgstr "সকল debuginfo ফাইল উপলব্ধ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -989,7 +1073,7 @@ msgstr "" - "বলা হলে স্থানীয় অবস্থানে স্ট্যাক ট্রেস প্রস্তুত করা হবে। (এর ফলে অনেক পরিমাণ " - "তথ্য ডাউনলোড করা হবে)।" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1228,7 +1312,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " -@@ -1240,16 +1325,18 @@ msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" - -@@ -1259,9 +1346,13 @@ msgstr "অনুসন্ধানের পংক্তিগুলি stdout- - msgid "Failed to compile regex" - msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1280,6 +1371,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1303,11 +1395,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1321,16 +1415,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1338,18 +1435,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1368,14 +1468,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1384,12 +1487,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1399,58 +1548,62 @@ msgstr "" - "\n" - "Extract Xorg crash from FILE (or standard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত তথ্য স্ট্যান্ডার্ড আউটপুটে প্রিন্ট করা হবে" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1987,7 +2140,7 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" - msgid "Sleeping for %d seconds" - msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1995,7 +2148,7 @@ msgstr "" - "ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের " - "সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2003,7 +2156,7 @@ msgstr "" - "একটি কার্নেল সমস্যা দেখা দিয়েছে, কিন্তু অাপনার হার্ডওয়্যার অসমর্থিত, তাই " - "কার্নেল রক্ষণাবেক্ষণকারীরা তা সারাতে অপরাগ।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2013,24 +2166,24 @@ msgstr "" - "টেইন্ট হয়েছে (flags:%s)। Kernel-র পরিচালকরা টেইন্ট হওয়া kernel-র রিপোর্ট " - "থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " টেন্টেড মডিউল: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "বাগ ID-র তালিকা" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "একটি bodhi সার্ভার url নির্ধারণ করুন" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "একটি রিলিজ সংখ্যা নির্ধারণ করুন" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2040,22 +2193,22 @@ msgstr "" - "\n" - "Search for updates on bodhi server" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "আপডেট অনুসন্ধান করা হচ্ছে" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "এই প্যাকেজের কোনো আপডেট পাওয়া যায়নি" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "উপলব্ধ প্যাকেজের সংস্করণের তুলনায় নতুন প্যাকেজ স্থানীয় মেশিনে উপস্থিত " - "রয়েছে" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2082,70 +2235,71 @@ msgstr "পাওয়া oopses মুদ্রণ করুন" - msgid "Delete files with found oopses" - msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগুলি মুছুন" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র " - "তালিকাভুক্ত করুন" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2156,56 +2310,66 @@ msgstr "" - "বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n" - "'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ " - "করুন" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u সমস্য সনাক্ত করেছে। অারো তথ্যের জন্য চালনা করুন: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' মোছা হচ্ছে" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& রিপোর্ট [বিকল্প] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "রিপোর্ট করার পরে PROBLEM_DIR সরান" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' মোছা হচ্ছে" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" -@@ -2216,28 +2380,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "অ্যাকশন: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' রিপোর্ট করা হচ্ছে" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "পরবর্তী সমস্যার জন্য ENTER টিপুন:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bs.po b/po/bs.po -index ebef881..6974aea 100644 ---- a/po/bs.po -+++ b/po/bs.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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: bs\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Izvještaj" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -153,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -186,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -235,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -254,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfiguracijska datoteka" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -272,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Zapiši u syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Dodaj nazive programa u zapis" - -@@ -297,60 +323,50 @@ msgstr "Dodaj nazive programa u zapis" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "Nemoj deamonizirati" - msgid "Log to syslog even with -d" - msgstr "Zapiši u syslog čak i sa -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Prolazak kroz funkcijski trag nije uspjelo za %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1787,63 +1946,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1865,65 +2024,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1931,49 +2091,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1982,24 +2152,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ca.po b/po/ca.po -index 8a4dadb..7b320e5 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -8,20 +8,21 @@ - # Josep Torné , 2014 - # Robert Antoni Buj Gelonch , 2014. #zanata - # Robert Antoni Buj Gelonch , 2015. #zanata -+# Robert Antoni Buj Gelonch , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-28 03:29-0400\n" -+"PO-Revision-Date: 2016-01-25 06:37-0500\n" - "Last-Translator: Robert Antoni Buj Gelonch \n" - "Language-Team: Catalan \n" - "Language: ca\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,34 +32,34 @@ msgstr "Presentació d'informes del problema" - msgid "View and report application crashes" - msgstr "Visualitzeu i informeu de les fallides en les aplicacions" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "No es pot ser el propietari de '%s'" -+msgstr "No es pot ser el propietari de «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "No es pot obrir el directori per a l'escriptura '%s'" -+msgstr "No es pot obrir el directori per a l'escriptura «%s»" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "No es pot tancar la notificació: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informa" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Reinicia" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -67,7 +68,7 @@ msgstr "" - "Ho sentim, sembla que %s ha tingut pana. El problema ha estat informat " - "automàticament." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -76,26 +77,26 @@ msgstr "" - "Ho sentim, sembla que %s ha tingut pana. El problema serà informat que hi " - "hagi disponible una connexió a Internet." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - "Ho sentim, sembla que %s ha tingut pana. Si us plau, poseu-vos en contacte " --"amb el desenvolupador si voleu informar-li d'aquesta incidència." -+"amb el desenvolupador si voleu informar-lo d'aquesta incidència." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" --"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a què es solucioni, " --"si us plau envieu un informe." -+"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a solucionar-ho, si " -+"us plau, envieu un informe." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -103,7 +104,7 @@ msgstr "" - "Ho sentim, sembla que hi va haver un problema amb un component. El problema " - "ha estat informat automàticament." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -111,36 +112,36 @@ msgstr "" - "Ho sentim, sembla que hi va haver un problema amb un component. El problema " - "serà informat que hi hagi disponible una connexió a Internet." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - "Ho sentim, sembla que hi va haver un problema amb un component. Si voleu " --"ajudar a què es solucioni, si us plau envieu un informe." -+"ajudar a solucionar-ho, si us plau, envieu un informe." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "No es pot mostrar la notificació: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "No es pot llegir des del canal gio: '%s'" -+msgstr "No es pot llegir des del canal gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "No es pot establir la codificació en el canal gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "No es pot engegar el mode no-bloquejant per al canal gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -151,6 +152,17 @@ msgstr "" - "Miniaplicació que notifica a l'usuari d'un nou problema detectat per " - "l'ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Pregunta abans de robar un directori" -@@ -172,13 +184,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"El fitxer del bolcat de memòria és necessari per generar la traça de la " --"pila, que és una operació que consumeix temps i espai. L'ABRT proporciona un " --"servei que genera la traça de la pila des del bolcat de memòria, però heu de " --"pujar el bolcat de memòria a aquest servei. Amb aquesta opció inhabilitada " --"l'ABRT pujarà el bolcat de memòria sense preguntar." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -200,10 +209,10 @@ msgid "" - "uReports are sent automatically immediately after problem detection." - msgstr "" - "L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " --"utilitza els uReport per a la ràpida detecció de duplicats a nivell global. " --"En la configuració per defecte l'uReport és enviat al començament del procés " --"de presentació d'informes. Amb aquesta opció habilitada els uReports són " --"enviats automàticament tot just després de la detecció del problema." -+"utilitza els uReport per a la ràpida detecció global de duplicats. En la " -+"configuració per defecte l'uReport és enviat al començament del procés " -+"informador. Amb aquesta opció habilitada els uReports són enviats " -+"automàticament tot just després de la detecció del problema." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" -@@ -226,10 +235,6 @@ msgstr "" - "d'informes reduïts." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Pregunta abans de pujar un bolcat de memòria" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -237,24 +242,40 @@ msgstr "" - "Amb aquesta opció habilitada l'ABRT sempre crea el tiquet de l'error amb " - "accés restringit si es detecten possibles dades sensibles." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "Sol·licita un tiquet privat per a informació sensible" -+msgstr "Sol·licita un tiquet privat per a la informació sensible" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifica problemes incomplets" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" --"El problemes incomplets es detecten mentre l'ordinador s'està aturant o " -+"Els problemes incomplets es detecten mentre l'ordinador s'està aturant o " - "s'està tancant la sessió d'un usuari. A fi de proporcionar informes de " - "problemes valuosos, l'ABRT no us permetrà enviar aquests problemes." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Tanca" -@@ -280,7 +301,7 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Surt" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -291,7 +312,7 @@ msgstr "" - "Consulta a la base de dades dels paquets i desa el nom del paquet i del " - "component" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -303,11 +324,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Directori del problema" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Fitxer de configuració" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Utilitza aquest directori com a l'arrel dels RPM" - -@@ -323,24 +344,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "El directori arrel per a l'execució de les ordres del contenidor" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcions]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" --msgstr "Utilitza el NUM com a uid de client" -+msgstr "Utilitza el NÚM com a uid de client" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Enregistra a syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Afegeix els noms dels programes al registre" - -@@ -348,77 +370,67 @@ msgstr "Afegeix els noms dels programes al registre" - msgid "Unknown error" - msgstr "Error desconegut" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' no es un directori del problema vàlid" -+msgid "'%s' is not a valid element name" -+msgstr "«%s» no és un nom d'element vàlid" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "L'element '%s' no es pot modificar " -+msgid "'%s' is not a valid problem directory" -+msgstr "«%s» no és un directori del problema vàlid" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "No autoritzat" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "No es pot accedir al problema per a la notificació" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "L'element «%s» no es pot modificar " - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Error en canviar el propietari del directori. Reviseu els registres del " - "sistema per a més detalls." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "No es pot accedir a la lectura del problema" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' no és un nom d'element vàlid" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "No es pot obtenir la mida de '%s'" -+msgstr "No es pot obtenir la mida de «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "No queda espai per al problema" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "No es pot eliminar l'element '%s' del directori del problema '%s'" -+msgstr "No es pot eliminar l'element «%s» del directori del problema «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"S'ha perdut el nom '%s', comproveu que no s'estigui executant un altre " -+"S'ha perdut el nom «%s», comproveu que no s'estigui executant un altre " - "servei que sigui el propietari del nom.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "Surt després de NUM segons d'inactivitat" -+msgstr "Surt després de NÚM segons d'inactivitat" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Aquest programa cal executar-lo com a root." - -@@ -445,24 +457,28 @@ msgstr "No en facis un dimoni" - msgid "Log to syslog even with -d" - msgstr "Enregistra a syslog inclús amb -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "Executa EVENT a DIR" -+msgstr "Executa l'ESDEVENIMENT al DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comuniqueu-vos directament amb l'usuari" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" - msgstr "" - "No hi ha cap treballador lliure i la memòria intermèdia està plena. S'està " --"ometent l'arxiu '%s'" -+"ometent l'arxiu «%s»" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -475,7 +491,7 @@ msgid "" - "If UPLOAD_DIRECTORY is not provided, uses a value of\n" - "WatchCrashdumpArchiveDir option from abrt.conf" - msgstr "" --"& [-vs] [-w NUM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" -+"& [-vs] [-w NÚM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" - "\n" - "\n" - "Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada al " -@@ -491,81 +507,82 @@ msgstr "Endimonia" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "El nombre de treballs concurrents. Per defecte són " -+msgstr "El nombre de treballs concurrents. El valor per defecte és " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "La mida màxima de la memòria cau en MiB. Per defecte són " -+msgstr "La mida màxima de la memòria cau en MiB. El valor per defecte és " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Desactiva l'autenticació" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "nom d'usuari del Red Hat Support" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" --"Contrasenya de Red Hat Support, si no es proporciona se us preguntarà per " -+"Contrasenya de Red Hat Support, si no es proporciona, se us preguntarà per " - "ella" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Els camins als certificats SSL de l'uReport o el tipus de certificat" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "També heu d'especificar --username per a --password" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Podeu utilitzar tant --username com --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Podeu utilitzar tant --username com --anonymous" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Podeu utilitzar tant --anonymous com --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "El nombre d'arguments no és vàlid" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Valor d'opció desconeguda: '%s'\n" -+msgstr "Valor d'opció desconeguda: «%s»\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Contrasenya:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "No es pot continuar sense la contrasenya\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "presentació automàtica d'informes d'HTTP autentificat" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "presentació automàtica d'informes de client autentificat SSL" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "presentació anònima dels informes" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -584,68 +601,68 @@ msgstr "" - " UPLOAD_DIR - Directori on són emmagatzemats els arxius pujats\n" - " FILENAME - Nom del fitxer de l'arxiu pujat\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "No és un directori: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "S'està ometent: '{0}' (comença amb barra invertida)" -+msgstr "S'ignora: '{0}' (comença amb barra invertida)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "S'està ometent: '{0}' (comença amb punt)" -+msgstr "S'ignora: '{0}' (comença amb punt)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "S'està ometent: '{0}' (conté ..)" -+msgstr "S'ignora: '{0}' (conté ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "S'està ometent: '{0}' (conté espai)" -+msgstr "S'ignora: '{0}' (conté espai)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "S'està ometent: '{0}' (conté tabulador)" -+msgstr "S'ignora: '{0}' (conté tabulador)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "No es pot canviar el directori '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipus de fitxer desconegut: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "No es pot crear el directori de treball en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "No es pot moure '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "No es pot copiar '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Error de verificació en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "S'està desempaquetant '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "No es pot crear el directori '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "No es pot desempaquetar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' s'ha processat amb èxit" - -@@ -662,33 +679,41 @@ msgstr "No es pot connectar al DBus del sistema: %s" - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "No es pot canviar el propietari '%s': %s" -+msgstr "No es pot canviar el propietari «%s»: %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" - msgstr "Error en eliminar el directori del problema: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "No es pot provar si l'element existeix sobre l'abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "No es pot crear el fitxer temporal '%s'" -+msgstr "No es pot crear el fitxer temporal «%s»" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -696,14 +721,14 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"No es pot escriure en '%s'. El problema '%s' no es traurà dels problemes " --"ignorats '%s'" -+"No es pot escriure en «%s». El problema «%s» no es traurà dels problemes " -+"ignorats «%s»" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "No es pot reanomenar '%s' a '%s'. Error en eliminar el problema '%s'" -+msgstr "No es pot reanomenar «%s» a «%s». Error en eliminar el problema «%s»" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -728,7 +753,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Error en analitzar la traça inversa per %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "No s'ha trobat el fil d'execució de la pana" - -@@ -740,18 +765,18 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID del bolcat de memòria en el directori del problema " -+"Calcula i desa l'UUID del bolc de la memòria en el directori del problema " - "DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "S'està analitzant el bolcat de memòria '%s'" -+msgstr "S'està analitzant el bolc de la memòria «%s»" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format - msgid "Missing build id: %s" --msgstr "Falta l'Id. de la contrucció: %s" -+msgstr "Falta l'id. de la construcció: %s" - - #: ../src/plugins/abrt-action-analyze-core.in:142 - #, c-format -@@ -770,7 +795,8 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID i el DUPHASH per al directori del problema oops DIR" -+"Calcula i desa l'UUID i el DUPHASH per al directori DIR del problema de " -+"l'oops" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -793,12 +819,12 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID i el DUPHASH per al directori del problema xorg DIR" -+"Calcula i desa l'UUID i el DUPHASH per al directori del problema xorg DIR" - - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "El mòdul '%s' estava carregat - no s'informarà d'aquesta pana" -+msgstr "El mòdul «%s» estava carregat - no s'informarà d'aquesta pana" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -808,7 +834,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID i el DUPHASH dels bolcats de les panes de Python" -+"Calcula i desa l'UUID i el DUPHASH dels bolcs de les panes de Python" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" -@@ -820,7 +846,7 @@ msgstr "El fitxer {0} no existeix" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "S'estan extraient el text dels ops des del nucli" -+msgstr "S'estan extraient el text de l'oops des del nucli" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" -@@ -830,13 +856,13 @@ msgstr "No es pot processar {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "No es pot extraure el missatge oops: '{0}'" -+msgstr "No es pot extraure el missatge de l'oops: '{0}'" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "El text dels oop s'ha extret am èxit" -+msgstr "El text de l'oops s'ha extret amb èxit" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -845,6 +871,38 @@ msgstr "" - "de maquinari.\n" - "El més probable és que no sigui un problema de programari.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -853,7 +911,7 @@ msgid "" - msgstr "" - "& [opcions] -d DIR\n" - "\n" --"Analitza el bolcat de memòria en el directori del problema DIR, genera i " -+"Analitza el bolc de la memòria en el directori del problema DIR, genera i " - "desa la traça inversa" - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 -@@ -862,7 +920,7 @@ msgstr "Directoris debuginfo addicionals" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Mata al gdb si s'executa més de NUM segons" -+msgstr "Mata al gdb si s'executa més de NÚM segons" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -880,7 +938,7 @@ msgid "" - msgstr "" - "& [-v] [-r] -d DIR\n" - "\n" --"Crea una traça inversa a nivell de bolcat de memòria des del bolcat de " -+"Crea una traça inversa a escala de bolc de la memòria des del bolc de la " - "memòria i el corresponent binari" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 -@@ -946,7 +1004,7 @@ msgstr "" - "Es llegeix la configuració de /etc/abrt/plugins/CCpp.conf\n" - "\n" - " -v Mostra informació detallada\n" --" -y No interactiu, assumeix 'Si' a totes les preguntes\n" -+" -y No interactiu, s'assumeix 'Sí' a totes les preguntes\n" - " --ids Per defecte: build_ids\n" - " --tmpdir Per defecte: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" -@@ -954,7 +1012,7 @@ msgstr "" - " --size_mb Per defecte: 4096\n" - " --pkgmgr Per defecte: PackageManager des de CCpp.conf o 'dnf'\n" - " -e,--exact Baixa tan sols els paquets especificats\n" --" --repo Patró a utilitzar quan es cerquen dipòsits.\n" -+" --repo Patró a utilitzar quan se cerquen dipòsits.\n" - " Per defecte: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 -@@ -964,7 +1022,7 @@ msgstr "No es pot obrir {0}: {1}" - #: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" --"El bolcat de memòria fa referència a {0} fitxers debuginfo, {1} dels quals " -+"El bolc de la memòria fa referència a {0} fitxers debuginfo, {1} dels quals " - "no estan instal·lats" - - #: ../src/plugins/abrt-action-install-debuginfo.in:215 -@@ -976,7 +1034,7 @@ msgstr "{0} dels fitxers debuginfo no estan instal·lats" - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "configuració no vàlida del complement CCpp, el gestor de paquets no està " --"suportat: '%s'" -+"suportat: «%s»" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -990,24 +1048,53 @@ msgstr "Falta el fitxer debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Tots els fitxers debuginfo estan disponibles" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" --"Esteu d'acord en pujar el bolcat de memòria? (Pot contenir dades sensibles). " --"Si la vostra resposta és 'No' aleshores es generà localment una traça de la " --"pila. (pot baixar una gran quantitat de dades)." -+"Esteu d'acord en pujar el bolc de la memòria? (Pot contenir dades sensibles)." -+" Si la vostra resposta és «No», aleshores es generà localment una traça de " -+"la pila. (pot baixar una gran quantitat de dades)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" --"Voleu generar a nivell local una traça de la pila? (Es poden baixar una gran " --"quantitat de dades, però la presentació d'informes no pot continuar sense la " --"traça de la pila)." -+"Voleu generar localment una traça de la pila? (Pot baixar una gran quantitat " -+"de dades, però la presentació d'informes no pot continuar sense la traça de " -+"la pila)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -1038,12 +1125,12 @@ msgstr "Preserva aquest directori" - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "Incapaç d'iniciar '%s', el missatge d'error va ser: '%s'" -+msgstr "Incapaç d'iniciar «%s», el missatge d'error va ser: «%s»" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "No és un número al fitxer '%s'" -+msgstr "No és un número al fitxer «%s»" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format -@@ -1053,8 +1140,8 @@ msgstr "Ús: %s [-v]" - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" --"No s'ha pogut obtenir el directori de treball actual com probablement hagi " --"estat eliminat" -+"No s'ha pogut obtenir el directori de treball actual, probablement es va " -+"eliminar" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" -@@ -1075,15 +1162,15 @@ msgstr "El reporter-ureport va fer fallida amb el codi de sortida %d" - - #: ../src/plugins/abrt-gdb-exploitable:529 - msgid "Signal sent by userspace code" --msgstr "Senyal enviada pel codi de l'espai d'usuari" -+msgstr "Senyal enviat pel codi de l'espai d'usuari" - - #: ../src/plugins/abrt-gdb-exploitable:533 - msgid "Signal sent by timer/IO/async event" --msgstr "Senyal enviada per l'esdeveniment timer/IO/async" -+msgstr "Senyal enviat per l'esdeveniment timer/IO/async" - - #: ../src/plugins/abrt-gdb-exploitable:541 - msgid "Signal has siginfo.si_code = SI_USER" --msgstr "La senyal té siginfo.si_code = SI_USER" -+msgstr "El senyal té siginfo.si_code = SI_USER" - - #: ../src/plugins/abrt-gdb-exploitable:544 - msgid "Signal due to write to closed pipe" -@@ -1092,22 +1179,22 @@ msgstr "Senyal a causa de l'escriptura en una canonada tancada" - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "Senyal enviada pel tecla" -+msgstr "Senyal enviat pel teclat" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 - msgid "Job control signal sent by kernel" --msgstr "Senyal de control de treball enviada pel nucli del sistema operatiu" -+msgstr "Senyal de control de treball enviat pel nucli del sistema operatiu" - - #: ../src/plugins/abrt-gdb-exploitable:558 - #: ../src/plugins/abrt-gdb-exploitable:587 - msgid "Signal sent by window resize" --msgstr "Senyal enviada pel redimensionament de la finestra" -+msgstr "Senyal enviat pel redimensionament de la finestra" - - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "Senyal enviada per l'expiració d'alarm(N)" -+msgstr "Senyal enviat per l'expiració d'alarm(N)" - - #: ../src/plugins/abrt-gdb-exploitable:583 - msgid "Signal due to write to broken pipe" -@@ -1147,7 +1234,7 @@ msgstr "Instrucció il·legal (salta a una adreça aleatòria?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" --msgstr "Senyal relacionada amb cap pana" -+msgstr "Senyal relacionat amb cap pana" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" -@@ -1216,12 +1303,12 @@ msgid "" - msgstr "" - "& [-vusoxm] [-d DIR]/[-D] [FITXER]\n" - "\n" --"Extreu els oop des del FITXER (o entrada estàndard)" -+"Extreu els oops del FITXER (o entrada estàndard)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" -+msgstr "Imprimeix els oops que s'han trobat en la sortida estàndard" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1230,12 +1317,13 @@ msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" --"Crea el nou directori del problema al DIR per a cadascun dels oop trobats" -+"Crea el nou directori del problema en DIR per a cadascun dels oops trobats" - - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "El mateix que -d DumpLocation, DumpLocation s'especifica en abrt.conf" - -@@ -1245,16 +1333,18 @@ msgstr "Desa la informació extreta en PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Fes que el directori del problema el pugui llegir tot el món" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Regula la creació del directori del problema a 1 per segon" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" - -@@ -1263,14 +1353,18 @@ msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" - msgid "Failed to compile regex" - msgstr "Error en compilar l'expressió regular" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "No es pot actualitzar el problema: s'han trobat més d'un oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "Ha fallat l'obtenció de tota la informació solicitada del journald" -+msgstr "Ha fallat l'obtenció de tota la informació sol·licitada del journald" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 -@@ -1286,6 +1380,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Error en inicialitzar l'observació de systemd-journal" - -@@ -1304,7 +1399,7 @@ msgid "" - msgstr "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" --"Extreu els bolcats de memòria des de systemd-journal\n" -+"Extreu els bolcs de la memòria des de systemd-journal\n" - "\n" - "les opcions -c i -e entren en conflicte perquè ambdós especifiquen la " - "lectura del primer missatge.\n" -@@ -1318,18 +1413,20 @@ msgstr "" - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" --"Crea un nou directori del problema al DIR per a cadascun dels bolcats de " -+"Crea un nou directori del problema al DIR per a cadascun dels bolcs de la " - "memòria" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "Inicia la lectuta de systemd-journal des de la posició del CURSOR" -+msgstr "Inicia la lectura de systemd-journal des de la posició del CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "Inicia la lectuta de systemd-journal des del final" -+msgstr "Inicia la lectura de systemd-journal des del final" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" -@@ -1341,17 +1438,20 @@ msgstr "El mateix que -t INT, INT s'especifica en plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Segueix systemd-journal des de la darrera posició vista (si n'hi hagués)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Heu d'especificar -c CURSOR o bé -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "No es pot obrir systemd-journal" - -@@ -1360,18 +1460,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "No es pot filtrar systemd-journal a únicament les dades systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "No es pot buscar fins al final de la publicació" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "Error en establir el cursor de systemd-journal '%s'" -+msgstr "Error en establir el cursor de systemd-journal «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "No es poden llegir les dades de la publicació." - -@@ -1390,7 +1493,7 @@ msgid "" - msgstr "" - "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" - "\n" --"Extrau els oops des del systemd-journal\n" -+"Extrau l'oops des del systemd-journal\n" - "\n" - "les opcions -c i -e entren en conflicte perquè ambdós especifiquen el primer " - "missatge llegit.\n" -@@ -1402,17 +1505,20 @@ msgstr "" - "La darrera posició vista està desada en " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Llegeix els fitxers de publicació des de totes les màquines" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Llegeix tots els fitxers de publicació del directori ubicat al CAMÍ" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "No es pot inicialitzar systemd-journal al directori «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" -@@ -1420,96 +1526,146 @@ msgstr "" - "No es pot filtrar systemd-journal únicament a dades del nucli del sistema " - "operatiu" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "Error en iniciar l'observació des del cursor '%s'" -+msgstr "Error en iniciar l'observació des del cursor «%s»" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" --"& [-vsoxm] [-d DIR]/[-D] [FITXER]\n" -+"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" --"Extreu la pana d'Xorg des del FITXER (o entrada estàndard)" -+"Extreu la fallida Xorg des de FILE (o entrada estàndard)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - "Imprimeix les dades de les panes que s'han trobat en la sortida estàndard" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Crea el directori del problema al DIR per a cadascuna de les panes trobades" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "No es pot desar la posició d'observació de la publicació" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "No es pot desar la posició d'observació de la publicació: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" --"No es restaura la posició d'observació de la publicació: el fitxer '%s' no " -+"No es restaura la posició d'observació de la publicació: el fitxer «%s» no " - "existeix" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "No es pot restaurar la posició d'observació de la publicació des del fitxer " --"'%s'" -+"«%s»" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" --"No es pot restaurar la posició d'observació de la publicació: el camí '%s' " -+"No es pot restaurar la posició d'observació de la publicació: el camí «%s» " - "no és un fitxer normal" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" --"No es pot restaurar la posició d'observació de la publicació: el fitxer '%s' " --"supera el límit de la mida %dB" -+"No es pot restaurar la posició d'observació de la publicació: el fitxer «%s» " -+"supera el límit de la mida %d B" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - "No es pot restaurar la posició d'observació de la publicació: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - "No es pot restaurar la posició d'observació del servei de publicació: no es " --"pot llegir el fitxer sencer '%s'" -+"pot llegir el fitxer sencer «%s»" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "Error en moure el cursor de la publicació des del fitxer '%s'" -+msgstr "Error en moure el cursor de la publicació des del fitxer «%s»" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." - msgstr "" --"No es pot utilitzar el servidor de resseguiment, a causa de que la mida del " -+"No es pot utilitzar el servidor de resseguiment, a causa que la mida del " - "fitxer de la pana és massa gran. Proveu amb un resseguiment local." - - #. Hopefully, by this time child emitted more meaningful -@@ -1565,8 +1721,8 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" --"El servidor de resseguiment no es capaç de processar el paquet '%s.%s'.\n" --"Forma part dels dipòsits oficials de '%s'?" -+"El servidor de resseguiment no és capaç de processar el paquet «%s.%s».\n" -+"Forma part dels dipòsits oficials de «%s»?" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" -@@ -1585,7 +1741,7 @@ msgstr "El servidor ha rebutjat la vostra sol·licitud." - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" --"'%s' ha de ser un fitxer normal per a poder utilitzar un servidor de " -+"«%s» ha de ser un fitxer normal per a poder utilitzar un servidor de " - "resseguiment." - - #: ../src/plugins/abrt-retrace-client.c:520 -@@ -1599,12 +1755,12 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." --msgstr "El servidor no és compatible amb els tarballs comprimits amb xz." -+msgstr "El servidor no és compatible amb els arxius tar comprimits amb xz." - - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "El llançament '%s' no està suportat pel servidor de resseguiment." -+msgstr "El llançament «%s» no està suportat pel servidor de resseguiment." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." -@@ -1624,8 +1780,8 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" --"La mida del vostre arxiu es de %s, però el servidor de resseguiment " --"únicament accepta arxius més petits o iguals de %s." -+"La mida del vostre arxiu és de %s, però el servidor de resseguiment " -+"únicament accepta arxius més petits o iguals a %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format -@@ -1648,7 +1804,7 @@ msgstr "S'està pujant %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "Error en llegir de d'una canonada" -+msgstr "Error en llegir d'una canonada" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format -@@ -1677,11 +1833,11 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Id." -+msgstr "La resposta del servidor no és vàlida: falta X-Task-Id." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." --msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Password." -+msgstr "La resposta del servidor no és vàlida: falta X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" -@@ -1696,7 +1852,7 @@ msgstr "Id. de la tasca: %s\n" - - #: ../src/plugins/abrt-retrace-client.c:866 - msgid "Invalid response from server: missing X-Task-Status." --msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Status." -+msgstr "La resposta del servidor no és vàlida: falta X-Task-Status." - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format -@@ -1718,8 +1874,8 @@ msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" --"Error en el resseguiment. Proveu-ho de nou més tard i si el problema perdura " --"informeu d'aquesta incidència." -+"Error en el resseguiment. Proveu-ho de nou més tard i si el problema " -+"perdura, informeu d'aquesta incidència." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" -@@ -1759,7 +1915,7 @@ msgstr "llegeix les dades des del directori del problema de l'ABRT" - - #: ../src/plugins/abrt-retrace-client.c:1233 - msgid "read data from coredump" --msgstr "llegeix les dades des del bolcat de memòria" -+msgstr "llegeix les dades des del bolc de la memòria" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" -@@ -1769,7 +1925,7 @@ msgstr "Retard per a les operacions de sondeig" - msgid "(debug) do not delete temporary archive created from dump dir in " - msgstr "" - "(depuració) no eliminis els arxius temporals que s'hagin creat des del " --"directori del bolcat en " -+"directori del bolc en " - - #: ../src/plugins/abrt-retrace-client.c:1239 - msgid "For status, backtrace, and log operations" -@@ -1794,7 +1950,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:1292 - #: ../src/plugins/abrt-retrace-client.c:1298 - msgid "Either problem directory or coredump is needed." --msgstr "Es necessita el directori del problema o bé el bolcat de memòria." -+msgstr "Es necessita el directori del problema o bé el bolc de la memòria." - - #: ../src/plugins/abrt-retrace-client.c:1304 - #: ../src/plugins/abrt-retrace-client.c:1312 -@@ -1822,8 +1978,8 @@ msgstr "Depurador GNU local" - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" - msgstr "" --"Baixa els paquets debuginfo i genera a nivell local la traça inversa " --"mitjançant GDB" -+"Baixa els paquets debuginfo i genera localment la traça inversa mitjançant " -+"GDB" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" -@@ -1831,14 +1987,15 @@ msgid "" - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." - msgstr "" --"Necessita baixar els paquets debuginfo, els quals prenen un temps " --"significant i espai de de disc. No obstant, a diferència dels servidors de " --"resseguiment, no envia els bolcats de la memòria a màquines remotes." -+"Necessita baixar els paquets debuginfo, els quals prenen un temps i espai de " -+"disc considerable. No obstant això, a diferència dels servidors de " -+"resseguiment, no envia els bolcs de la memòria a màquines remotes." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" - msgstr "" --"Envia el bolcat de memòria al servidor remot de resseguiment per a l'anàlisi" -+"Envia el bolc de la memòria al servidor remot de resseguiment per a " -+"l'anàlisi" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" -@@ -1848,12 +2005,12 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" --"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " --"retorna. Pros: no hi hi la necessitat de baixar els debuginfo. La base de " -+"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " -+"retorna. Pros: no hi ha la necessitat de baixar els debuginfo. La base de " - "dades dels debuginfo del servidor de resseguiment és més completa. El " - "servidor de resseguiment pot generar millor les traces inverses. Cons: el " --"bolcat de memòria que pugeu conté totes les dades del programa que ha tingut " --"pana, que inclouen les vostres dades privades, si fos el cas." -+"bolc de la memòria que pugeu conté totes les dades del programa que ha " -+"tingut pana, que inclouen les vostres dades privades, si fos el cas." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 - msgid "Retrace server URL" -@@ -1887,7 +2044,7 @@ msgstr "Recull .xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" --msgstr "Desa les línies rellevants del fitxer ~/.xsession-errors" -+msgstr "Desa les línies apropiades del fitxer ~/.xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:3 - msgid "" -@@ -1905,7 +2062,7 @@ msgstr "S'ha produït un error en el cantó del servidor." - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "S'ha produït un error en el cantó del servidor en '%s'" -+msgstr "S'ha produït un error en el cantó del servidor en «%s»" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" -@@ -1914,7 +2071,7 @@ msgstr "S'ha produït un error mentre es connectava amb el servidor" - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "S'ha produït un error mentre es connectava a '%s'" -+msgstr "S'ha produït un error mentre es connectava a «%s»" - - #: ../src/plugins/https-utils.c:97 - #, c-format -@@ -1932,7 +2089,7 @@ msgstr "" - msgid "Certificate subject name '%s' does not match target host name '%s'." - msgstr "" - "El nom del subjecte del certificat '%s' no coincideix amb el nom de " --"l'amfitrió de destinació '%s'." -+"l'amfitrió de destinació «%s»." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." -@@ -1941,12 +2098,12 @@ msgstr "El certificat remot ha expirat." - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "No s'ha reconegut l'emissor del certificat: '%s'." -+msgstr "No s'ha reconegut l'emissor del certificat: «%s»." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "S'ha rebut un certificat dolent. Subjecte '%s', emissor '%s'." -+msgstr "S'ha rebut un certificat dolent. Subjecte «%s», emissor «%s»." - - #: ../src/plugins/https-utils.c:149 - #, c-format -@@ -1956,13 +2113,13 @@ msgstr "Error en obtenir la ranura 'PEM Token #0': %d." - #: ../src/plugins/https-utils.c:182 - #, c-format - msgid "Can't resolve host name '%s'. NSS error %d." --msgstr "No es pot resoldre el nom de l'amfitrió '%s'. error de NSS %d." -+msgstr "No es pot resoldre el nom de l'amfitrió «%s». error de NSS %d." - - #. Host exists, but has neither IPv4 nor IPv6?? - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "No es pot resoldre el nom de l'amfitrió '%s'." -+msgstr "No es pot resoldre el nom de l'amfitrió «%s»." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." -@@ -1986,12 +2143,12 @@ msgstr "L'habilitació de TLS ha fallat." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "Error en establir la URL al sòcol SSL." -+msgstr "Error en establir l'URL al sòcol SSL." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "No es pot connectar a '%s'" -+msgstr "No es pot connectar a «%s»" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." -@@ -2003,7 +2160,7 @@ msgstr "Ha fallat l'establiment del retorn de la salutació." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "Error en resetejar la salutació." -+msgstr "Error en restablir la salutació." - - #: ../src/plugins/https-utils.c:258 - #, c-format -@@ -2017,7 +2174,7 @@ msgstr "Error en tancar el sòcol SSL." - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "Capçalera de resposta HTTP amb format incorrecte: '%s'" -+msgstr "Capçalera de resposta HTTP amb format incorrecte: «%s»" - - #: ../src/plugins/https-utils.c:369 - #, c-format -@@ -2045,7 +2202,7 @@ msgstr "Error en aturar NSS." - msgid "Sleeping for %d seconds" - msgstr "S'està dormint durant %d segons" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2054,7 +2211,7 @@ msgstr "" - "trencada, per desgràcia aquests problemes no es poden corregir pels " - "mantenidors del nucli del sistema operatiu." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2063,7 +2220,7 @@ msgstr "" - "maquinari no és compatible, per tant els mantenidors del nucli del sistema " - "operatiu no poden corregir-ho." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2073,24 +2230,24 @@ msgstr "" - "nucli ha estat contaminat (marcadors: %s). Els mantenidors del nucli del " - "sistema operatiu no poden fer diagnòstics amb informes contaminats." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Mòduls contaminats: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Llistat dels Id. dels errors" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especifica un servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especifica un llançament" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2100,22 +2257,22 @@ msgstr "" - "\n" - "Cerca si hi ha actualitzacions en el servidor bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "S'està cercant si hi ha actualitzacions" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "No s'han trobat actualitzacions per aquest paquet" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La versió local del paquet és més recent que la de les actualitzacions " - "disponibles" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2133,79 +2290,80 @@ msgid "" - msgstr "" - "& [-v] [-od] FITXER...\n" - "\n" --"Escaneja els fitxers per a dividir els missatges oop. Pot imprimir-los i/o " --"eliminar-los." -+"Escaneja els fitxers per a dividir el missatge de l'oops. Pot imprimir-los i/" -+"o eliminar-los." - - #: ../src/hooks/abrt-merge-pstoreoops.c:97 - msgid "Print found oopses" --msgstr "Imprimeix els oop que s'han trobat" -+msgstr "Imprimeix els oops que s'han trobat" - - #: ../src/hooks/abrt-merge-pstoreoops.c:98 - msgid "Delete files with found oopses" --msgstr "Elimina els fitxers amb els oop que s'han trobat" -+msgstr "Elimina els fitxers amb els oops que s'han trobat" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "'%s' fa referència a més d'un directori de problema" -+msgstr "«%s» fa referència a més d'un directori de problema" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Ús: abrt-cli [--version] ORDRE [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Llista els problemes [als DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Elimina el directori del problema DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analitza i informa de les dades del problema al DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimeix informació sobre el DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Imprimeix el compte de les panes recents" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Processa múltiples problemes" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Consulteu 'abrt-cli ORDRE --help' per a més informació" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opcions]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Llista únicament els problemes que s'hagin informat" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostra informes detallats" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Llista únicament els problemes que siguin més recents que la marca de temps " - "especificada" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Llista únicament els problemes anteriors a la marca de temps especificada" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2216,53 +2374,63 @@ msgstr "" - "Considereu habilitar-ho\n" - "amb 'abrt-auto-reporting enabled' com a usuari amb els privilegis de root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opcions] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "El text que sigui més gran que aquest es mostrarà abreujat" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "El directori del problema '%s' no existeix" -+msgstr "El directori del problema «%s» no existeix" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Imprimeix únicament el compte dels problemes sense cap missatge" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Imprimeix únicament els problemes que siguin més recents que la marca de " - "temps especificada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" --"ABRT ha detectat %u problem[a|es]. Per a més informació executeu: abrt-cli " -+"ABRT ha detectat %u problem[a/es]. Per a més informació executeu: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "S'està eliminant «%s»" -+ -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [opcions] DIR..." - --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Elimina PROBLEM_DIR després de la presentació d'informes" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "S'està eliminant '%s'" -- - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Accions: remove(rm), info(i), skip(s):" -@@ -2271,33 +2439,188 @@ msgstr "Accions: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Accions: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "S'està informant '%s'" -+msgstr "S'està informant «%s»" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Per al següent problema premeu RETORN:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Sense l'argument --since, s'itera sobre tots els problemes detectats." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - "Selecciona únicament els problemes que es van detectar després de la marca " - "de temps" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " - "analysis if the remote analysis fails" - msgstr "" --"Envia el bolcat de memòria a un servidor remot de resseguiment per a " --"l'anàlisi o per a la realització de l'anàlisis local si es produeix un error " -+"Envia el bolc de la memòria a un servidor remot de resseguiment per a " -+"l'anàlisi o per a la realització de l'anàlisi local si es produeix un error " - "en el servidor remot de l'anàlisi" - - #: ../src/plugins/analyze_CCpp.xml.in.h:2 -@@ -2310,15 +2633,14 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" --"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " --"retorna. Si l'usuari no vol pujar el seu bolcat de memòria enlloc, " --"l'esdeveniment realitza l'anàlisi a nivell local. L'anàlisi local s'executa " --"si l'anàlisi remot falla. Pros: no hi hi la necessitat de baixar els " --"debuginfo. La base de dades dels debuginfo del servidor de resseguiment és " --"més completa. El servidor de resseguiment pot generar millor les traces " --"inverses. Cons: el bolcat de memòria que pugeu conté totes les dades del " --"programa que ha ha tingut pana, que inclouen les vostres dades privades, si " --"fos el cas." -+"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " -+"retorna. Si l'usuari no vol pujar el seu bolc de la memòria enlloc, " -+"l'esdeveniment realitza localment l'anàlisi. L'anàlisi local s'executa si " -+"falla l'anàlisi remota. Pros: no hi ha la necessitat de baixar els debuginfo." -+" La base de dades dels debuginfo del servidor de resseguiment és més " -+"completa. El servidor de resseguiment pot generar millor les traces inverses." -+" Cons: el bolc de la memòria que pugeu conté totes les dades del programa " -+"que ha tingut pana, que inclouen les vostres dades privades, si fos el cas." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" -@@ -2329,7 +2651,7 @@ msgid "" - "Install kernel debuginfo packages, generate kernel log and oops message" - msgstr "" - "Instal·la els paquets debuginfo del nucli del sistema operatiu, genera " --"registres del nucli del sistema operatiu i missatges oops" -+"registres del nucli del sistema operatiu i missatges de l'oops" - - #: ../src/plugins/analyze_VMcore.xml.in.h:3 - msgid "" -@@ -2337,7 +2659,7 @@ msgid "" - "time, and take up disk space." - msgstr "" - "Necessita instal·lar els paquets debuginfo del nucli del sistema operatiu, " --"els quals prenen un temps significant i espai de de disc." -+"els quals prenen un temps i espai de disc considerable." - - #: ../src/plugins/collect_GConf.xml.in.h:1 - msgid "Collect GConf configuration" -@@ -2352,8 +2674,8 @@ msgid "" - "Runs gconftool-2 --recursive-list /apps/executable and saves it as " - "'gconf_subtree' element." - msgstr "" --"Executa gconftool-2 --recursive-list /apps/executable i desa-ho com element " --"de 'gconf_subtree'." -+"Executa gconftool-2 --recursive-list /apps/executable i ho desa com a " -+"element de 'gconf_subtree'." - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" -diff --git a/po/cs.po b/po/cs.po -index 5a092d7..debed52 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -18,121 +18,134 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-05 09:29-0500\n" --"Last-Translator: Jiri Eischmann \n" -+"PO-Revision-Date: 2015-05-13 05:06-0400\n" -+"Last-Translator: Zdenek \n" - "Language-Team: čeština \n" - "Language: cs\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Hlášení problemů" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Prohlédni a nahlas chyby aplikací" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Nelze převzít vlastnictví '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Nemohu otevřít adresář pro zápis '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nemohu zavřít oznámení: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Nahlásit" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Restart" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Problém byl automaticky nahlášen." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Problém bude nahlášen jakmile bude " -+"dostupný internet." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Kontaktujte prosím vývojáře, pokud " -+"chcete problém nahlásit." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Pokud chcete pomoct s řešením " -+"tohoto problému, zašlete nám ho prosím." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém byl " -+"automaticky nahlášen." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém bude " -+"nahlášen, jakmile bude dostupný internet." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Je nám líto, ale zdá se, že se v komponentě objevil problém. Pokud chcete " -+"pomoct s řešením tohoto problému, zašlete nám ho prosím." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nemohu zobrazit oznámení: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Nemohu číst z kanálu gio: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nemohu nastavit kódování na kanálu gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nemohu zapnout neblokový režim pro kanál gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -142,6 +155,17 @@ msgstr "" - "\n" - "Applet, který uživatele upozorní, když ABRT detekuje nový problém\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Zeptat se před ukradnutím adresáře" -@@ -163,12 +187,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Soubor coredumpu je nezbytný pro vygenerování stack tracu, což je časově a " --"prostorově náročná operace. ABRT poskytuje službu, která vygeneruje stack " --"trace z coredumpu, ale musíte do této služby coredump nahrát. Pokud tuto " --"volbu zakážete, ABRT nahraje coredump bez ptaní." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -214,10 +236,6 @@ msgstr "" - "nahlášené problémy. Funguje pouze, pokud je povoleno Zkrácené hlášení." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Zeptat se před odesláním coredumpu" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -225,15 +243,15 @@ msgstr "" - "Pokud je tato volba povolená, ABRT vždy vytvoří chybové hlášení s omezeným " - "přístupem, jsou-li potenciálně citlivá data detekována." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Vyžadovat neveřejné hlášení v případě citlivých informací" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Upozornit na nekompletní problémy" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -242,6 +260,22 @@ msgstr "" - "Nekompletní problémy jsou detekovány, když se počítač vypíná nebo uživatel " - "odhlašuje. V zájmu užitečnosti hlášení, ABRT tyto problémy odesílat nebude." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Zavřít" -@@ -267,14 +301,17 @@ msgstr "O" - msgid "Quit" - msgstr "Konec" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Dotáže databázi balíčků a uloží jméno balíčku a komponenty" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -286,42 +323,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Adresář problému" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurační soubor" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Použít tento adresář jako RPM root" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Uloží zásobník metadat" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Kořenový adresář pro běžící zásobník příkazů" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [volby]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Použít NUM jako klient uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Protokolovat do syslogu" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Přidá názvy programů do protokolu" - -@@ -329,62 +369,52 @@ msgstr "Přidá názvy programů do protokolu" - msgid "Unknown error" - msgstr "Neznámá chyba" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' není platným adresářem problému" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' není platným jménem prvku" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' prvek nemůže být modifikován" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' není platným adresářem problému" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Neautorizovaný" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nemohu zpřístupnit problém ke změně" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' prvek nemůže být modifikován" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více " - "informací." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' není platným jménem prvku" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Nemohu získat velikost '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nezbývá místo na problémy" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -394,12 +424,12 @@ msgstr "" - "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící " - "toto jméno neběží.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Ukončí po NUM sekundách neaktivity" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Tento program musí být spuštěn pod root uživatelem." - -@@ -425,18 +455,22 @@ msgstr "Nedémonizuje se" - msgid "Log to syslog even with -d" - msgstr "Protokoluje do syslogu i s -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Spustí EVENT v DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikovat přímo s uživatelem" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -474,73 +508,76 @@ msgstr "Počet souběžných \"dělníků\". Výchozí je " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximální velikost mezipaměti v MiB. Výchozí je " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Vypíná autentizaci" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Uživatelské jméno podpory Red Hat" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" -+"Heslo pro podporu Red Hat. Pokud není uvedeno, bude obdržena výzva pro jeho " -+"vydání" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "Cesta nebo typ SSL certifikátu pro uReport" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "Musíte zadat --username pro --password" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "Můžete použít buď --username nebo --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "Můžete použít buď --username nebo --anonymous" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "Můžete použít buď --anonymous nebo --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Neplatný počet argumentů" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Neznámá hodnota možnosti: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Heslo:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Bez zadání hesla nelze pokračovat\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "Automatické hlášení chyb autorizováno pro HTTP" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "Automatické hlášení chyb autorizováno pro SSL klienta" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "Anonymní automatické hlášení chyb" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -560,68 +597,68 @@ msgstr "" - " UPLOAD_DIR - Adresář, kde jsou nahrané archivy uložené\n" - " FILENAME - Název souboru nahraného archivu\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Ne adresář: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Přeskočení: '{0}' (začíná lomítkem)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Přeskočení: '{0}' (začíná tečkou)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Přeskočení: '{0}' (obsahuje..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Přeskočení: '{0}' (obsahuje mezeru)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Přeskočení: '{0}' (obsahuje tabulátor)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Nelze změnit adresáž na '{0}'" -+msgstr "Nelze změnit adresář na '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Neznámý typ souboru '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Nelze vytvořit pracovní adresář '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Nelze přesunout '{0}' do '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Nelze zkopírovat '{0}' do '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Chyba ověření na '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Rozbalení '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Nelze vytvořit adresář '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Nelze rozbalit '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' byl úspěšně zpracován" - -@@ -645,21 +682,29 @@ msgstr "Nelze provést chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Odstraňování adresáře problému selhalo: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nemohu získat data problému z abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nemohu získat seznam problémů z abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nemohu získat data problému z abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Nelze otestovat zda-li element existuje nad abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -704,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Rozbor zásobníku volání v %s se nezdařil" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Vlákno poruchy nenalezeno" - -@@ -809,7 +854,7 @@ msgstr "Nelze vytáhnout zprávu oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Text oops úspěšně vyňat." - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -817,6 +862,38 @@ msgstr "" - "Protokol jádra indikuje, že byly detekovány chyby hardwaru.\n" - "Toto není s největší pravděpodobností softwarový problém.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -902,6 +979,28 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Použití: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Instaluje debuginfo pro všechny ID buildů v BUILD_IDS_FILE\n" -+"do CACHEDIR pomocí TMPDIR jako dočasného vyčkávacího prostoru.\n" -+"Staré soubory v CACHEDIR jsou smazány, dokud nejsou menší než SIZE.\n" -+"\n" -+"Načítá konfiguraci z /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Být upovídaný\n" -+" -y Neinterkativní, předpokládá 'Ano' pro všechny otázky\n" -+" --ids Výchozí: build_ids\n" -+" --tmpdir Výchozí: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Výchozí: /var/cache/abrt-di\n" -+" --size_mb Výchozí: 4096\n" -+" --pkgmgr Výchozí: Správce balíčků z CCpp.conf nebo 'dnf'\n" -+" -e,--exact Stáhnout pouze uvedený soubor\n" -+" --repo Vzor, který použít pro hledání repozitářů.\n" -+" Výchozí: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -921,6 +1020,7 @@ msgstr "{0} souborů debuginfo není nainstalováno" - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"Neplatná konfigurace doplňku CCpp, nepodporovaný správce balíčku: '%s'" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -934,7 +1034,36 @@ msgstr "Chybějící soubory ladících údajů: {0}" - msgid "All debuginfo files are available" - msgstr "Všechny soubory debuginfo jsou dostupné" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -944,7 +1073,7 @@ msgstr "" - "Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje lokálně. (to " - "může mít za následek stažení velkého množství dat)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1177,7 +1306,8 @@ msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Stejné jako -d DumpLocation, DumpLocation je specifikováno v abrt.conf" -@@ -1188,16 +1318,18 @@ msgstr "Uložit vyňaté informace v PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Učiň adresář problému přístupný pro čtení všem" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Omezit vytváření adresářů s problémy na 1 za sekundu" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" - -@@ -1206,27 +1338,32 @@ msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" - msgid "Failed to compile regex" - msgstr "Selhalo zkompilování regexu" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Nelze aktualizovat problém: nalezen více než jeden oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Nepodařilo se získat všechny požadované informace ze žurnálu" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Neukládat opakující se pád po %ds (limit je %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "Nepodařilo se uložit data detekovaného problému v abrt databazi" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Selhalo inicializování systemd-journal watch" - -@@ -1243,60 +1380,78 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrahuje záznamy jádra ze systemd-journalu\n" -+"\n" -+"volby -c and -e jsou v konfliktu, protože obě určují první přečtenou zprávu.\n" -+"\n" -+"-e je užitečné pouze pro -f, protože po startu journalu následuje čtení\n" -+"celého journalu, pokud není k dispozici poslední pozice.\n" -+"\n" -+"Poslední zhlédnutá pozice je uložená v " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený záznam jádra" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Začít číst systemd-journal z pozice CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Začít číst systemd-journal od konce" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Omezit vytváření adresářů s problémy na 1 za INT sekund" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Stejné jako -t INT, INT je specifikováno v plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Sleduj system-journal z poslední zhlédnuté pozice (pokud je dostupná)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Musíte zadat buď -c CURSOR nebo -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Nelze otevřít systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" --msgstr "" -+msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o záznamu jádra" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Nelze skočit na konec journalu" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Selhalo nastavení kurzoru systemd-journal '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Nelze číst data journalu." - -@@ -1325,28 +1480,77 @@ msgstr "" - "Poslední zhlédnutá pozice je uložená v " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Čte soubory žurnálu ze všech systémů" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Čte všechny soubory žurnálu z adresáře v PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Nelze iniciovat systemd-journal v adresáři '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o kernelu" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Selhalo nastartování sledování z kurzoru '%s'" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1356,41 +1560,45 @@ msgstr "" - "\n" - "Extrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Vypiš nalezená data o havárii na standardní výstup" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Nelze uložit pozici journal watch" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Nelze uložit pozici journal watch: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "Neobnovuje se pozice journal watch: soubor '%s' neexistuje" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Nelze obnovit soubor pozice journal watch '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "Nelze obnovit pozici journal watch: cesta '%s' není běžný soubor" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1398,18 +1606,18 @@ msgstr "" - "Nelze obnovit pozici journal watch: soubor '%s' překračuje limit velikosti " - "%dB" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Nelze obnovit pozici journal watch: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "Nelze obnovit pozici journal watch: nelze přečíst celý soubor '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Selhalo přesunutí journalu do kurzoru ze souboru '%s'" -@@ -1779,9 +1987,9 @@ msgid "" - "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " - ">(warning)</a>" - msgstr "" --"K povolení nezabezpečeného spojení použijte pole Nezabezpečený" -+"Zapiště \"nezabezpečený\" k povolení nezabezpečeného připojení <a href=" -+"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(varování)</a>" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 - msgid "Collect .xsession-errors" -@@ -1876,11 +2084,11 @@ msgstr "Selhalo povolení handshake pro SSL soket." - - #: ../src/plugins/https-utils.c:220 - msgid "Failed to enable SSL3." --msgstr "" -+msgstr "Selhalo povolení SSL3." - - #: ../src/plugins/https-utils.c:222 - msgid "Failed to enable TLS." --msgstr "" -+msgstr "Selhalo povolení TLS." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." -@@ -1943,7 +2151,7 @@ msgstr "Selhalo ukončení NSS." - msgid "Sleeping for %d seconds" - msgstr "Spánek po %d sekund" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1951,7 +2159,7 @@ msgstr "" - "Problém v kernelu se vyskytl kvůli rozbitému BIOSu. Takového problémy nejsou " - "bohužel vývojáři kernelu opravitelné." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1959,7 +2167,7 @@ msgstr "" - "Vyskytl se problém v kernelu, ale váš hardware není podporovaný, proto " - "vývojáři kernelu nejsou schopní tento problém opravit." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1968,24 +2176,24 @@ msgstr "" - "Vyskytl se problém s jádrem, ale vaše jádro bylo modifikováno (parametry:%s)." - " Správci jádra nejsou schopni diagnostikovat modifikované reporty." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Závadné moduly: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Seznam ID chyb" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Urči url bodhi serveru" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Urči vydání" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1995,20 +2203,20 @@ msgstr "" - "\n" - "Hledej aktualizace na serveru bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Vyhledávání aktualizací" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Pro tento balíček nenalezeny žádné aktualizace" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokální verze balíčku je novější než verze dostupná v aktualizacích" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2035,65 +2243,66 @@ msgstr "Vypsat nalezené oopsy" - msgid "Delete files with found oopses" - msgstr "Smazat soubory s nalezenými oopsy" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' nalezl více než jeden adresář s problémy" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Použití: abrt-cli [--version] PŘÍKAZ [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Vypsat seznam problémů [v adresářích]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Odstraň adresář problému DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyzuj a reportuj data problému v DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Tisk informací o DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Vypsat počet nedávných pádů" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Zpracovat více problémů" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Více informací získáte příkazem „abrt-cli PŘÍKAZ --help“" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [volby]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Vypsat seznam pouze nenahlášených problémů" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Zbrazit detailní zprávu" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Vypsat seznam problémů novějších než zadaná časová značka" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Vypsat seznam problémů starších než zadaná časová značka" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2103,51 +2312,61 @@ msgstr "" - "Funkce automatického hlášení je zakázána. Prosím zvažte její povolení pomocí\n" - "spuštění 'abrt-auto-reporting enabled' s právy roota\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [volby] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Text delší než toto bude zestručněný" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Žádný adresář s problémy '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& stav" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Vypsat pouze počet problémů beze zpráv" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Vypsat pouze problémy novější než zadaná časová značka" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT detekoval %u problém(ů). Chcete-li více informací, spusťte: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Odstranit PROBLEM_DIR po nahlášení" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Mazání '%s'" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [options] DIR..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Odstranit PROBLEM_DIR po nahlášení" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Akce: remove(rm), info(i), skip(s):" -@@ -2156,25 +2375,180 @@ msgstr "Akce: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Akce: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Hlášení '%s'" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Na další problémy přejdete tisknutím ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Bez argumentu --since provedete operaci nad všemi detekovanými problémy." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Vybere pouze problémy detekované po časové značce" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/da.po b/po/da.po -index 5056f43..4d62355 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/da/)\n" - "Language: da\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,102 +29,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan ikke tage ejerskab over \"%s\"" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapportér" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -135,6 +135,17 @@ msgstr "" - "Panelprogram som giver brugeren besked, når nye problemet er fundet af " - "ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -156,7 +167,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -189,30 +202,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -238,14 +263,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -257,11 +282,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemmappe" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurationsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -275,24 +300,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [tilvalg]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Skriv til syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Føj programnavne til log" - -@@ -300,60 +326,50 @@ msgstr "Føj programnavne til log" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -361,12 +377,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -387,18 +403,22 @@ msgstr "Dæmonisér ikke" - msgid "Log to syslog even with -d" - msgstr "Skriv til syslog, selv med -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -428,73 +448,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -506,68 +527,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -591,18 +612,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -643,7 +672,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Fortolkning af backtrace mislykkedes for %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -735,12 +764,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -849,14 +910,43 @@ msgstr "Manglende debuginfo-fil: {0}" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1071,7 +1161,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Samme som -d DumpLocation, DumpLocation er angivet i abrt.conf" - -@@ -1081,16 +1172,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1099,8 +1192,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1120,6 +1217,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1143,11 +1241,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1161,16 +1261,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1178,18 +1281,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1208,14 +1314,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1224,70 +1333,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1807,63 +1966,63 @@ msgstr "Kunne ikke nedlukke NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Liste over fejl-id'er" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Angiv en url til bodhi-server" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Angiv en udgivelse" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Søger efter opdateringer" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ingen opdateringer fundet for denne pakke" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokal version af pakken er nyere end tilgængelige opdateringer" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1885,65 +2044,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Se \"abrt-cli COMMAND --help\" for mere information" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Vis detaljeret rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1951,49 +2111,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2002,24 +2172,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/de.po b/po/de.po -index 527eb21..73a2018 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -20,17 +20,17 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-20 08:24-0400\n" -+"PO-Revision-Date: 2015-08-19 02:33-0400\n" - "Last-Translator: Roman Spirgi \n" - "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" - "language/de/)\n" - "Language: de\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -40,34 +40,34 @@ msgstr "Problemberichterstattung" - msgid "View and report application crashes" - msgstr "Anwendungsabstürze anzeigen und berichten" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Eigentumsrechte von »%s« können nicht geändert werden." - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Benachrichtigung kann nicht geschlossen werden: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Hoppla!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Melden" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Neustart" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -76,7 +76,7 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wurde " - "automatisch gemeldet." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -85,8 +85,8 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wird gemeldet, " - "sobald die Internetverbindung verfügbar ist." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -95,7 +95,7 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Bitte kontaktieren Sie den " - "Entwickler, wenn Sie diesen Fehler melden wollen." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -104,7 +104,7 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Bitte melden Sie dies, wenn " - "Sie mithelfen möchten, dieses Problem zu beheben." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -112,7 +112,7 @@ msgstr "" - "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " - "Dieses Problem wurde automatisch gemeldet." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -120,7 +120,7 @@ msgstr "" - "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " - "Dieses Problem wird gemeldet, sobald die Internetverbindung verfügbar ist." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -128,28 +128,28 @@ msgstr "" - "Entschuldigung, es scheint ein Fehler aufgetreten zu sein. Bitte melden Sie " - "dies, wenn Sie mithelfen möchten, das Problem zu beheben." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Benachrichtigung kann nicht angezeigt werden: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Von gio channel kann nicht gelesen werden: »%s«" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Verschlüsselung kann auf gio channel nicht gesetzt werden: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nichtblockier-Modus kann für gio channel nicht gesetzt werden: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -160,6 +160,17 @@ msgstr "" - "Applet zur Benachrichtigung des Benutzers, wenn neue Abstürze durch ABRT " - "entdeckt werden\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -177,19 +188,15 @@ msgstr "Verkürzte Berichterstattung" - msgid "Silent shortened reporting" - msgstr "Verkürzte Berichterstattung (silent)" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine " --"Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet " --"einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings " --"müssen Sie den Coredump für diesen Service hochladen. Ist diese Option " --"deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -242,10 +249,6 @@ msgstr "" - "aktiviert ist." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Vor dem Hochladen des Coredumps nachfragen" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -254,16 +257,16 @@ msgstr "" - "eingeschränktem Zugriff, falls die Daten allenfalls persönliche Daten " - "enthalten." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Privates Ticket für sensible Informationen anfordern" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Unvollständige Probleme melden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -273,6 +276,22 @@ msgstr "" - "gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche " - "Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Schließen" -@@ -298,7 +317,7 @@ msgstr "Über" - msgid "Quit" - msgstr "Beenden" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -308,7 +327,7 @@ msgstr "" - "\n" - "Paket-Datenbank durchsuchen und Paket- und Komponentennamen sichern" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -320,11 +339,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Fehler-Verzeichnis" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurationsdatei" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Dieses Verzeichnis als RPM-Root verwenden" - -@@ -340,24 +359,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "Root-Verzeichnis, um Container-Befehle auszuführen" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM als Client-UID benutzen" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "In Systemprotokoll speichern" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Anwendungsnamen protokollieren" - -@@ -365,62 +385,52 @@ msgstr "Anwendungsnamen protokollieren" - msgid "Unknown error" - msgstr "Unbekannter Fehler" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "»%s« ist kein gültiges Problem-Verzeichnis" -+msgid "'%s' is not a valid element name" -+msgstr "»%s« ist kein gültiger Name für das Element" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Element »%s« kann nicht geändert werden" -+msgid "'%s' is not a valid problem directory" -+msgstr "»%s« ist kein gültiges Problem-Verzeichnis" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Nicht erlaubt" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Element »%s« kann nicht geändert werden" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " - "System-Logdateien überprüfen." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Fehlerbericht kann nicht mit Lesezugriff geöffnet werden" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "»%s« ist kein gültiger Name für das Element" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Größe von '%s' kann nicht bestimmt werden" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -430,12 +440,12 @@ msgstr "" - "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " - "anderer Dienst unter dem gleichen Namen läuft.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Nach NUM Sekunden Inaktivität beenden" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." - -@@ -462,18 +472,22 @@ msgstr "Nicht als Hintergrunddienst ausführen" - msgid "Log to syslog even with -d" - msgstr "Auch mit -d im Systemprotokoll speichern" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT auf DIR ausführen" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Direkt mit dem Benutzer kommunizieren" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -513,89 +527,90 @@ msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximale Cache-Größe in MB. Standard ist " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Deaktiviert die Authentifizierung" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support Benutzername" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support Passwort; falls nicht angegeben, wird zur Eingabe eines " - "Passworts aufgefordert" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL-Zertifikatspfad oder -Zertifikatstyp" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Sie müssen ebenfalls --username für --password angeben" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Sie können entweder --username oder --certificate verwenden" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Sie können entweder --username oder --anonymous verwenden" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Sie können entweder --anonymous oder --certificate verwenden" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Ungültige Parameteranzahl" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Unbekannter Optionswert: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Passwort:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Fortfahren ohne Passwort nicht möglich\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Per HTTP authentifizierte automatische Berichterstattung" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Per SSL-Client authentifizierte automatische Berichterstattung" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Anonyme automatische Berichterstattung" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -617,83 +632,83 @@ msgstr "" - " DATEINAME - Name der Archivdatei\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Kein Verzeichnis: »{0}«" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Überspringen: »{0}« (beginnt mit einem Schrägstrich)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Überspringen: »{0}« (beginnt mit einem Punkt)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Überspringen: »{0}« (enthält ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Überspringen: »{0}« (enthält Leerzeichen)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Überspringen: »{0}« (enthält Tabulatoren)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Verzeichnis kann nicht auf »{0}« geändert werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Unbekannter Dateityp: »{0}«" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Arbeitsverzeichnis kann nicht in »{0}« erstellt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "»{0}« kann nicht nach »{1}« verlegt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "»{0}« kann nicht nach »{1}« kopiert werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Fehler bei Prüfung von »{0}«" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "»{0}« wird entpackt" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Verzeichnis »{0}« kann nicht erstellt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "»{0}« kann nicht entpackt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "»{0}« erfolgreich verarbeitet" - -@@ -717,21 +732,30 @@ msgstr "Chown nicht möglich: »%s«: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Fehler-Liste kann von abrt-dbus nicht abgerufen werden: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -+"Über abrt-dbus kann nicht überprüft werden, ob das Element existiert: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -777,7 +801,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Verarbeitung der Ablaufverfolgung für %s ist fehlgeschlagen" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Absturz Thread nicht gefunden" - -@@ -888,7 +912,7 @@ msgstr "Oops-Meldung kann nicht ausgelesen werden: »{0}«" - msgid "Oops text extracted successfully" - msgstr "Oops-Text erfolgreich ausgelesen" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -896,6 +920,38 @@ msgstr "" - "Das Kernel-Protokoll weist darauf hin, dass Hardware-Fehler entdeckt wurden.\n" - "Höchstwahrscheinlich handelt es sich dabei nicht um ein Software-Problem.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -982,6 +1038,28 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" -+"to CACHEDIR, using TMPDIR as temporary staging area.\n" -+"Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" -+"\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Be verbose\n" -+" -y Noninteractive, assume 'Yes' to all questions\n" -+" --ids Default: build_ids\n" -+" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Default: /var/cache/abrt-di\n" -+" --size_mb Default: 4096\n" -+" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" -+" -e,--exact Download only specified files\n" -+" --repo Pattern to use when searching for repos.\n" -+" Default: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -1015,7 +1093,36 @@ msgstr "Fehlende Debuginfo-Datei: {0}" - msgid "All debuginfo files are available" - msgstr "Alle Debuginfo-Dateien sind vorhanden" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1026,7 +1133,7 @@ msgstr "" - "wird eine lokale Stapelüberwachung erstellt - und damit unter Umständen ein " - "große Datenmenge heruntergeladen." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1270,7 +1377,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" -@@ -1281,16 +1389,18 @@ msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Fehler-Verzeichnis allgemein lesbar machen" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Erstellung eines Fehlerverzeichnisses auf 1 pro Sekunde beschränken" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Suchbegriff(e) in Stdout schreiben und beenden" - -@@ -1300,9 +1410,13 @@ msgstr "Suchbegriff(e) in Stdout schreiben und beenden" - msgid "Failed to compile regex" - msgstr "Kompilieren von regex fehlgeschlagen" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Fehler kann nicht aktualisiert werden: mehrere Oops gefunden" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1321,6 +1435,7 @@ msgstr "Fehlerdaten konnten nicht in ABRT-Datenbank gespeichert werden" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Systemd-Journal watch konnte nicht initialisiert werden" - -@@ -1344,11 +1459,13 @@ msgstr "Für jeden Coredump ein neues Fehlerverzeichnis erstellen" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Systemd-Journal ab Cursor-Position lesen" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Systemd-Journal ab Ende lesen" - -@@ -1362,17 +1479,20 @@ msgstr "Gleich wie -t INT, INT ist definiert in plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Systemd-Journal ab der letzten gesehenen Position folgen (sofern verfügbar)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Entweder -c CURSOR oder -e muss angegeben werden" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Systemd-Journal kann nicht geöffnet werden" - -@@ -1381,18 +1501,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "Systemd-Journal kann nicht nur auf systemd-coredump-Daten gefiltert werden" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Das Ende des Journals konnte nicht erreicht werden" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Cursor '%s' des Systemd-Journals kann nicht festgelegt werden" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Journal-Daten können nicht gelesen werden" - -@@ -1411,28 +1534,77 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Journal-Dateien aller Geräte auslesen" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Alle Journal-Daten aus PFAD-Verzeichnis auslesen" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Systemd-Journal kann im Verzeichnis »%s« nicht initialisiert werden" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Systemd-Journal kann nicht nur auf Kernel-Dateien gefiltert werden" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Beginn der Ansicht ab Cursor '%s' fehlgeschlagen" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1442,46 +1614,50 @@ msgstr "" - "\n" - "Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Gefundene Daten zum Absturz auf Standard-Eingabe ausgeben" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Ansichtsposition des Journals kann nicht gespeichert werden" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Position des Journals kann nicht gespeichert werden: offen('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« ist " - "nicht vorhanden" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "Journal-Ansichtsposition kann nicht aus Datei »%s« wiederhergestellt werden" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Pfad »%s« ist " - "keine reguläre Datei" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1489,14 +1665,14 @@ msgstr "" - "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« " - "überschreitet %dB Größenbeschränkung" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - "Ansichtsposition des Journals kann nicht wiederhergestellt werden: " - "offen('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1504,7 +1680,7 @@ msgstr "" - "kann nicht vollständig gelesen werden" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Journal konnte nicht aus Datei »%s« zu einem Cursor verschoben werden" -@@ -2044,7 +2220,7 @@ msgstr "NSS konnte nicht heruntergefahren werden." - msgid "Sleeping for %d seconds" - msgstr "%d Sekunden warten" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2052,7 +2228,7 @@ msgstr "" - "Ein Kernel-Problem ist aufgetreten aufgrund eines beschädigten BIOS. Leider " - "können derartige Probleme nicht von Kernel-Maintainern behoben werden." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2060,7 +2236,7 @@ msgstr "" - "Ein Kernel-Problem ist aufgetreten, aber Ihre Hardware wird nicht " - "unterstützt, weshalb Kernel-Maintainer dieses Problem nicht beheben können." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2069,24 +2245,24 @@ msgstr "" - "Es ist ein Kernel-Problem aufgetreten, aber Ihr Kernel ist defekt (flags:%s)." - " Kernel-Maintainer können keine Berichte beschädigter Kernel analysieren." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Betroffene Module: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Liste der Bug-ID-Nummern" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Geben Sie eine Bodhi-Server-URL an" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Geben Sie eine Version an" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2096,20 +2272,20 @@ msgstr "" - "\n" - "Nach Aktualisierungen auf dem Bodhi-Server suchen" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Nach Aktualisierungen suchen" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Keine Aktualisierungen zu diesem Paket gefunden" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Die lokale Version ist aktueller als die verfügbaren Aktualisierungen" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2138,69 +2314,70 @@ msgstr "Gefundene Oopses ausgeben" - msgid "Delete files with found oopses" - msgstr "Löschen Dateien mit gefundenen Oopses" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "»%s« findet mehr als ein Fehlerverzeichnis" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Fehler anzeigen [in DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Fehler-Verzeichnis DIR entfernen" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Fehlerdaten in DIR analysieren und berichten" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Informationen zu DIR auflisten" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Anzahl der jüngsten Abstürze ausgeben" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Mehrere Fehler verarbeiten" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& Liste [Optionen]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Nur noch nicht berichtete Probleme anzeigen" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Detaillierten Bericht anzeigen" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Nur die Probleme anzeigen, welcher vor dem festgelegten Zeitpunkt auftraten" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2211,57 +2388,67 @@ msgstr "" - "Betracht, sie\n" - "zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [Optionen] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Längere Texte werden gekürzt angezeigt" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& Status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " - "ausgeben" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli " - "list%s)\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "»%s« wird gelöscht" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& berichten [Optionen] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "PROBLEM_DIR nach Berichterstattung löschen" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "»%s« wird gelöscht" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" -@@ -2272,27 +2459,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "»%s« wird gemeldet" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/el.po b/po/el.po -index dc3f503..4430929 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/el/)\n" - "Language: el\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,108 +31,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Αναφορά" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -154,7 +165,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -187,30 +200,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -236,14 +261,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -255,11 +280,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Αρχείο παραμετροποίησης" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -273,24 +298,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Καταγραφή στο syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Προσθήκη του ονόματος του προγράμματος στο αρχείο καταγραφής" - -@@ -298,60 +324,50 @@ msgstr "Προσθήκη του ονόματος του προγράμματος - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -359,12 +375,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -385,18 +401,22 @@ msgstr "Μην το κάνεις Daemon" - msgid "Log to syslog even with -d" - msgstr "Καταγραφή στο syslog χρησιμοποιώντας την παράμετρο -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -426,73 +446,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -504,68 +525,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -589,18 +610,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -641,7 +670,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -730,12 +759,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -844,14 +905,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1066,7 +1156,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1076,16 +1167,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1094,8 +1187,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1115,6 +1212,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1138,11 +1236,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1156,16 +1256,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1173,18 +1276,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1203,14 +1309,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1219,70 +1328,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1794,63 +1953,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1872,65 +2031,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1938,49 +2098,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1989,24 +2159,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/en_GB.po b/po/en_GB.po -index adab5f7..abac5db 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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 "" - "fedora-abrt/language/en_GB/)\n" - "Language: en-GB\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,102 +32,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Can't take ownership of '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Can't open directory for writing '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Can't close notification: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Report" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Can't show notification: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Can't read from gio channel: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Can't set encoding on gio channel: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Can't turn on nonblocking mode for gio channel: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +137,17 @@ msgstr "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -158,7 +169,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -191,30 +204,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -240,14 +265,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -259,11 +284,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problem directory" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Configuration file" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -277,24 +302,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Use NUM as client uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log to syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Add program names to log" - -@@ -302,60 +328,50 @@ msgstr "Add program names to log" - msgid "Unknown error" - msgstr "Unknown error" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' is not a valid element name" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' is not a valid problem directory" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Not Authorised" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Can't access the problem for modification" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' is not a valid element name" -+msgid "'%s' element can't be modified" -+msgstr "'%s' element can't be modified" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Can't get size of '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "No problem space left" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Can't delete the element '%s' from the problem directory '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -365,12 +381,12 @@ msgstr "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Exit after NUM seconds of inactivity" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "This program must be run as root." - -@@ -391,18 +407,22 @@ msgstr "Do not daemonise" - msgid "Log to syslog even with -d" - msgstr "Log to syslog even with -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Run EVENT on DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Communicate directly to the user" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -432,73 +452,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -510,68 +531,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -595,18 +616,26 @@ msgstr "Can't chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Deleting problem directory failed: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Can't get problem list from abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Can't get problem data from abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -651,7 +680,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Backtrace parsing failed for %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -746,12 +775,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -864,7 +925,36 @@ msgstr "Missing debuginfo file: {0}" - msgid "All debuginfo files are available" - msgstr "All debuginfo files are available" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -874,7 +964,7 @@ msgstr "" - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1097,7 +1187,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - -@@ -1107,16 +1198,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Make the problem directory world readable" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Print search string(s) to stdout and exit" - -@@ -1125,8 +1218,12 @@ msgstr "Print search string(s) to stdout and exit" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1146,6 +1243,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1169,11 +1267,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1187,16 +1287,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1204,18 +1307,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1234,14 +1340,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1250,12 +1359,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1265,58 +1420,62 @@ msgstr "" - "\n" - "Extract Xorg crash from FILE (or standard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Print found crash data on standard output" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1839,19 +1998,19 @@ msgstr "Failed to shutdown NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1860,24 +2019,24 @@ msgstr "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Tainted modules: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "List of bug ids" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Specify a bodhi server url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Specify a release" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1887,20 +2046,20 @@ msgstr "" - "\n" - "Search for updates on bodhi server" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Searching for updates" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "No updates for this package found" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Local version of the package is newer than available updates" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1924,65 +2083,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Remove problem directory DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyse and report problem data in DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Print information about DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "See 'abrt-cli COMMAND --help' for more information" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Show detailed report" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1990,49 +2150,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2041,24 +2211,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/es.po b/po/es.po -index 44f8932..d91744e 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -31,54 +31,54 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-06 12:18-0400\n" --"Last-Translator: Alex Puchades \n" -+"PO-Revision-Date: 2015-09-30 06:57-0400\n" -+"Last-Translator: Gladys Guerrero Lozano \n" - "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/es/)\n" - "Language: es\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Informe de errores" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Ver e informar sobre errores de aplicación" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "No se puede tomar la propiedad de «%s»" -+msgstr "No se puede tomar propiedad de «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "No puedo abrir carpeta para escribir '%s'" -+msgstr "No se puede abrir la carpeta '%s' para escritura" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "No se puede cerrar la notificación: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ups!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informar" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Reiniciar" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -87,7 +87,7 @@ msgstr "" - "Lo sentimos, parece que %s ha dejado de funcionar. Se ha informado " - "automáticamente de este problema." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -96,72 +96,72 @@ msgstr "" - "Lo sentimos, parece que %s ha dejado de funcionar. Se informará de este " - "problema cuando el acceso a Internet esté disponible." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" --"Lo sentimos, parece que %s ha dejado de funcionar. Por favor, póngase en " --"contacto con el desarrollados si quiere informar de este problema." -+"Lo sentimos, parece que %s ha dejado de funcionar. Póngase en contacto con " -+"el desarrollador si quiere informar de este problema." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - "Lo sentimos, parece que %s ha dejado de funcionar. Si le gustaría ayudarnos " --"a solucionar este problema, envíe un informe." -+"a solucionar este problema, envíenos un informe." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" --"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " --"Se ha informado automáticamente de este problema." -+"Lo sentimos, parece que ha ocurrido un problema con alguno de los " -+"componentes. Se ha informado automáticamente de este problema." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" --"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " --"Se informará automáticamente de este problema cuando el acceso a Internet " --"esté disponible." -+"Lo sentimos, parece que ha ocurrido un problema con alguno de los " -+"componentes. Se informará automáticamente de este problema cuando el acceso " -+"a Internet esté disponible." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" --"Lo sentimos, parece que ha habido algún problema. Si quiere ayudarnos a " -+"Lo sentimos, parece que ha ocurrido algún problema. Si quiere ayudarnos a " - "solucionar el problema, envíenos un informe." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "No se puede mostrar la notificación: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "No se puede leer desde el canal gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "No se puede fijar la codificación sobre el canal gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "No se puede establecer el modo de no bloqueo para el canal gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -169,12 +169,23 @@ msgid "" - msgstr "" - "& [-v] [DIR]...\n" - "\n" --"Applet que notifica al usuario cuando ABRT detecta nuevos problemas\n" --"\n" -+"Miniaplicación que notifica al usuario cuando ABRT detecta nuevos " -+"problemas\n" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "Preguntar antes de robar carpeta" -+msgstr "Preguntar antes de robar directorio" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" -@@ -193,13 +204,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"El archivo de volcado de memoria se necesita para generar un trazado de la " --"pila, una operación que consume bastante tiempo y espacio. ABRT ofrece un " --"servicio que genera el trazado de la pila pero usted tiene que subir el " --"volcado a este servicio. Con esta opción deshabilitada, ABRT subirá el " --"archivo de volcado sin preguntar." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -246,10 +254,6 @@ msgstr "" - "informados. Tiene efecto sólo si los informes abreviados están habilitados." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Preguntar antes de subir el archivo de volcado" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -257,15 +261,15 @@ msgstr "" - "Con esta opción habilitada ABRT siempre crea una entrada del error con " - "acceso restringido si se detecta datos posiblemente sensibles." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Pedir registro privado por información sensible" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notificar problemas incompletos" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -275,6 +279,22 @@ msgstr "" - "apagando o el usuario está saliendo. Con el objetivo de suministrar informes " - "útiles, ABRT no le permitirá presentar estos problemas." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Cerrar" -@@ -300,7 +320,7 @@ msgstr "Acerca de" - msgid "Quit" - msgstr "Salir" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -311,7 +331,7 @@ msgstr "" - "Interrogar a la base de datos de paquetes y guardar el nombre de paquete y " - "componente" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -323,11 +343,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Carpeta de problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Archivo de configuración" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Utilizar esta carpeta como raíz RPM" - -@@ -343,24 +363,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "Carpeta raíz para los comandos de contenedor mientras se ejecutan" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilice NUM como uid del cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registrar en syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Añadir nombre de programa al registro" - -@@ -368,77 +389,67 @@ msgstr "Añadir nombre de programa al registro" - msgid "Unknown error" - msgstr "Error desconocido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' no es una carpeta de problemas válida" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' no es un nombre de elemento válido" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' elemento no puede ser modificado" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' no es una carpeta de problemas válida" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "No autorizado" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "No se puede acceder al problema para modificación" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' elemento no puede ser modificado" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Error cambiando el propietario de la carpeta. Revise los registros del " - "sistema para más detalles." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "No se puede acceder al problema para lectura" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' no es un nombre de elemento válido" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "No se puede obtener el tamaño de «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "No queda espacio para problemas" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "No se puede borrar el elemento '%s' de la carpeta de problemas '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"El nombre '%s' ser perdió, verifique que otro servicio con el mismo nombre " --"no se esté ejecutando.\n" -+"El nombre '%s' se perdió, verifique que no se esté ejecutando ningún otro " -+"servicio con el mismo nombre.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Sale después de NUM segundos de inactividad" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa debe ser ejecutado como root." - -@@ -451,11 +462,11 @@ msgid "" - "sort out this problem, please contact them directly." - msgstr "" - "Los datos del problema están incompletos. Esto suele suceder cuando se " --"detecta un problema en el momento en que el computador se está apagando o el " --"usuario está saliendo. Con el fin de proporcionar informes valiosos del " --"problema, ABRT no le permitirá a usted enviar este problema. Si usted tiene " --"tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " --"por favor contáctelos directamente." -+"detecta un problema en el momento en que el ordenador se está apagando o el " -+"usuario está saliendo. Con el fin de proporcionar informes útiles del " -+"problema, ABRT no le permitirá enviar este informe. Si tiene tiempo y desea " -+"ayudar a los desarrolladores en su esfuerzo por solucionarlo, contáctelos " -+"directamente." - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" -@@ -465,18 +476,22 @@ msgstr "No convertir en un demonio" - msgid "Log to syslog even with -d" - msgstr "Registrar en syslog aún con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Ejecutar EVENTO en DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunicar directamente al usuario" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -515,86 +530,87 @@ msgstr "Número de trabajadores concurrentes. El valor por defecto es" - msgid "Maximal cache size in MiB. Default is " - msgstr "Tamaño máximo de la caché en MB. Por defecto es" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Desactiva la autenticación" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nombre de usuario de Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Rutas de certificado uReport SSL o tipo de certificado" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "También necesita especificar --username para --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Puede usar --username o --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Puede usar --username o --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Puede usar --anonymous o --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Número de argumentos no válido" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valor de opción desconocido: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Contraseña:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "No puede continuar sin contraseña\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Autoreporte autenticado HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Autoreporte de cliente autenticadoSSL " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Autoreporte anónimo " - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -614,68 +630,68 @@ msgstr "" - " UPLOAD_DIR - Carpeta donde los archivos subidos son almacenados\n" - " FILENAME - Nombre del archivo a subir.\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "No es una carpeta: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Omitiendo: '{0}' (inicia con barra inclinada)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Omitiendo: '{0}' (inicia con punto)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Omitiendo: '{0}' (contiene ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Omitiendo: '{0}' (contiene espacio)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Omitiendo: '{0}' (contiene tabulacion)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "No se puede cambiar la carpeta a '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipo de archivo desconocido: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "No se puede crear una carpeta de trabajo en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "No se puede mover '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "No se puede copiar '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Error de verificacion en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Desempaquetando '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "No se puede crear la carpeta '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "No se puede desempaquetar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' procesado exitosamente" - -@@ -699,21 +715,30 @@ msgstr "No puedo hacer chown'%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Falló el borrado de la carpeta de problema: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "No se pudo obtener la lista de problemas desde abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -+"No se puede comprobar si el elemento existe por medio de abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -758,7 +783,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Ha fallado el análisis del trazado de %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "No se encontró el hilo que se colgó" - -@@ -866,7 +891,7 @@ msgstr "No puedo extraer el mensaje ups: '{0}'" - msgid "Oops text extracted successfully" - msgstr "EL texto ups se ha extraído correctamente" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -874,6 +899,38 @@ msgstr "" - "El registro del kernel indica que se han detectado errores en el hardware.\n" - "Esto muy probablemente no es un problema de software.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -960,6 +1017,29 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Uso: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Instala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\n" -+"a CACHEDIR, usando TMPDIR como área temporal de pruebas.\n" -+"Los archivos antiguos en CACHEDIR son eliminados hasta que su tamaño sea " -+"menor que SIZE.\n" -+"\n" -+"Lee la configuración de /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Explicito\n" -+" -y No interactivo, asume 'Si' a todas las preguntas\n" -+" --ids Prederterminado: build_ids\n" -+" --tmpdir Prederterminado: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Prederterminado: /var/cache/abrt-di\n" -+" --size_mb Prederterminado: 4096\n" -+" --pkgmgr Prederterminado: PackageManager from CCpp.conf or 'dnf'\n" -+" -e,--exact Descarga los archivos especificados unicamente\n" -+" --repo Patrón a usar cuando se buscan repos.\n" -+" Prederterminado: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -979,6 +1059,8 @@ msgstr "{0} de archivos debuginfo no están instalados" - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"Configuración inválida del complemento CCpp, gestor de paquetes no soportado:" -+" '%s'" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -992,23 +1074,53 @@ msgstr "No se encuentra el archivo de información de depuración: {0}" - msgid "All debuginfo files are available" - msgstr "Todos los archivos debuginfo están disponibles" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" --"¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su " --"respuesta es 'No', se generará localmente una traza localmente. (Puede " --"descargar una enorme cantidad de datos)." -+"¿Está de acuerdo con el volcado de memoria? (Puede contener datos sensibles)." -+" Si su respuesta es 'No', se generará una traza localmente. (Puede que sea " -+"necesario descargar una enorme cantidad de datos)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" --"¿Desea generar una traza de la pila localmente? (Puede descargar una gran " --"cantidad de datos pero el reporte no puede continuar sin una traza de pila)." -+"¿Desea generar una traza de la pila localmente? (Puede que sea necesario " -+"descargar una gran cantidad de datos, pero el reporte no puede continuar sin " -+"un trazado de pila)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -1236,7 +1348,8 @@ msgstr "Creado una nueva carpeta de problemas en DIR por cada ups encontrado" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" -@@ -1247,16 +1360,18 @@ msgstr "Guardar la información extraída en PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Hacer la carpeta de problemas legible por todos" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Acelerar la creación de la carpeta de problemas a 1 por segundo" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" - -@@ -1265,27 +1380,34 @@ msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" - msgid "Failed to compile regex" - msgstr "Fallo al compilar regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "No se pudo actualizar el problema: se encontraron mas de un oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "No se pudo obtener toda la información necesaria de journald" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "No se guarda el fallo recurrente después de %ds (el límite es %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" - msgstr "" -+"No se pudo guardar los datos de detección de problemas en la base de datos " -+"de abrt" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Fallo al inicializar systemd-journal watch" - -@@ -1302,6 +1424,17 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrae los volcados de memoria de systemd-journal\n" -+"\n" -+"Las opciones -c y -e entran en conflicto debido a que ambas especifican el " -+"primer mensaje leído.\n" -+"\n" -+"-e es útil unicamente para -f porque el siguiente journal inicia leyendo\n" -+"el journal completo si la última posición vista no está disponible.\n" -+"\n" -+"La última posición fue guardada en " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" -@@ -1309,11 +1442,13 @@ msgstr "Crear nueva carpeta de problemas en DIR por cada volcado de memoria" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Inicia leyendo systemd-journal desde la posición CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Inicia leyendo systemd-journal desde el final" - -@@ -1324,40 +1459,48 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Lo mismo que -t INT, INT está especificado en plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Sigue systemd-jounal desde la última posición vista(si está disponible)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Necesitas especificar -c CURSOR o -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "No se puede abrir systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" -+"No pueden filtrarse unicamente los datos de systemd-journal a systemd-" -+"coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "No se puede buscar hacia el final del diario" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Fallo al establecer el cursor '%s' en systemd-journal" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "No se puede leer los datos del diario." - -@@ -1387,29 +1530,78 @@ msgstr "" - "La última posición vista está guardada en" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Leer archivos de journal de todos los sistemas" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Leer todos los archivos de journal de la carpeta PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "No se puede inicializar systemd-journal en la carpeta '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - "No se puede filtrar systemd-journal para los datos del kernel únicamente" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Fallo al iniciar watch desde el cursor '%s'" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1419,45 +1611,49 @@ msgstr "" - "\n" - "Extrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Prime los datos del cuelgue encontrados en la salida estándar" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Crear una carpeta de problemaa en DIR por cada crash encontrado" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "No se puede guardar la posición observada del diario" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "No se puede guardar la posición observada del diario: abierto('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "No se restaura la posición observada del diario: el archivo '%s' no existe" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "No se puede restaurar la posición observada del diario desde el archivo '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "No se puede restaurar la posición observada del diario: la dirección '%s' no " - "es un archivo normal" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1465,12 +1661,12 @@ msgstr "" - "No se puede restaurar la posición observada del diario: el archivo '%s' " - "excede el límite de tamaño %dB" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "No se puede restaurar la posición observada del diario: abierto('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1478,7 +1674,7 @@ msgstr "" - "archivo completo '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Fallo al mover el diario a un cursor desde el archivo '%s'" -@@ -1805,10 +2001,10 @@ msgid "" - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." - msgstr "" --"Necesita descargar paquetes de información de depuración, lo que podría " -+"Se necesita descargar paquetes de información de depuración, lo que podría " - "tardar un tiempo considerable y ocupar espacio en disco. Sin embargo, a " - "diferencia de RetraceServer, no se envía el volcado de memoria a ningún " --"equipo remotos." -+"equipo remoto." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" -@@ -1970,7 +2166,7 @@ msgstr "No se pudo conectar a '%s'." - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "Error al establecer enlace de certificado." -+msgstr "Error al establecer hook de certificado." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." -@@ -2020,15 +2216,16 @@ msgstr "Error al apagar NSS." - msgid "Sleeping for %d seconds" - msgstr "Durmiendo por %d segundos" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" --"Ha ocurrido un problema de kernel debido a un BIOS dañado. Infortunadamente, " --"los mantenedores de kernel no pueden corregir dichos problemas." -+"Ha ocurrido un problema de kernel debido a una BIOS defectuosa. " -+"Desafortunadamente, los mantenedores de kernel no pueden corregir dichos " -+"problemas." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2036,7 +2233,7 @@ msgstr "" - "Ha ocurrido un problema de kernel, pero su hardware no tiene soporte, por lo " - "tanto los mantenedores de kernel no pueden corregir este problema." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2046,24 +2243,24 @@ msgstr "" - "%s). Los mantenedores del núcleo no pueden diagnosticar informes de núcleos " - "dañados." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Módulos manchados: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de ids de errores" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especifique la url del servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especifique el lanzamiento" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2073,22 +2270,22 @@ msgstr "" - "\n" - "Buscar actualizaciones en el servidor bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Buscando actualizaciones" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "No se encontraron actualizaciones para este paquete" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La versión local del paquete es mas nueva que la disponible en las " - "actualizaciones" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2116,124 +2313,135 @@ msgstr "Imprimir los oopses encontrados" - msgid "Delete files with found oopses" - msgstr "Borrar los archivos con oopses encontrados" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' identificado más de una carpeta de problema" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Listar problemas [en DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Retirar carpeta de problemas DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizar y reportar datos de problemas en DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimir información sobre DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Imprima el conteo de las fallas recientes" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Procesando múltiples problemas" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opciones]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Listar únicamente problemas no reportados" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Muestre el reporte detallado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Listar sólo los problemas más recientes que la marca de tiempo especificada" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Listar sólo los problemas más viejos que la marca de tiempo especificada" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " - "issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" --"The Autoreporting feature is disabled. Please consider enabling it by " --"issuing\n" --"'abrt-auto-reporting enabled' as a user with root privileges\n" -+"El reporte automático de errores está desactivado. Puede activarlo " -+"ejecutando\n" -+"'abrt-auto-reporting enabled' como usuario con privilegios de root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Los textos de mayor longitud que éste se mostrarán abreviados" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "No se encontró la carpeta de problema '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Imprimir únicamente los problemas más recientes que la marca de tiempo " - "especificada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list " - "%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [opciones] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Elimina PROBLEM_DIR después de reportarlo" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Borrando '%s'" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [opciones] DIR..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Elimina PROBLEM_DIR después de reportarlo" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Acciones: eliminar(rm), información(i), omitir(s):" -@@ -2242,26 +2450,181 @@ msgstr "Acciones: eliminar(rm), información(i), omitir(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Reportando '%s'" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Para el siguiente problema presione la tecla ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Without -- puesto que el argumento se repite sobre todos los problemas " - "detectados." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Selecciona únicamente los problemas después del tiempo especificado" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/et.po b/po/et.po -index 97e99c2..b45ae6c 100644 ---- a/po/et.po -+++ b/po/et.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/et/)\n" - "Language: et\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,102 +29,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' omandamine nurjus" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Teavita" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -134,6 +134,17 @@ msgstr "" - "\n" - "Aplett, mis teavitab kasutajat, kui ABRT on tuvastanud uusi probleeme\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -155,7 +166,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -188,30 +201,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -237,14 +262,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -256,11 +281,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Probleemide kataloog" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Seadistuste fail" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -274,24 +299,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [valikud]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logi syslog-i" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lisa programminimed logisse" - -@@ -299,60 +325,50 @@ msgstr "Lisa programminimed logisse" - msgid "Unknown error" - msgstr "Tundmatu viga" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ei ole korrektne probleemi kataloog" -+msgid "'%s' is not a valid element name" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ei ole korrektne probleemi kataloog" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Pole autenditud" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -360,12 +376,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Välju peale NUM sekundit tegevusetust" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Seda rakendust peab käivitama administraatori õigustes." - -@@ -386,18 +402,22 @@ msgstr "Deemoniks ei minda" - msgid "Log to syslog even with -d" - msgstr "Logi syslog-i isegi koos -d'ga" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Käivita SÜNDMUS KATALOOGIS" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -427,73 +447,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -505,68 +526,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -590,18 +611,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "Probleemi kataloogi kustutamine nurjus: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Probleemi nimekirja pärimine üle abrt-dbus'i nurjus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -647,7 +676,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-i tagasijälituse parsimine nurjus" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -742,12 +771,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -861,14 +922,43 @@ msgstr "Puuduv silumisinfo fail: {0}" - msgid "All debuginfo files are available" - msgstr "Kõik silumisinfo failid on saadaval" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1089,7 +1179,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Sama kui -d DumpLocation, DumpLocation määratakse abrt.conf failis" - -@@ -1099,16 +1190,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Tee probleemide kataloog kõikidele loetavaks" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Trüki otsingustringid stdout-i ja välju" - -@@ -1117,8 +1210,12 @@ msgstr "Trüki otsingustringid stdout-i ja välju" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1138,6 +1235,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1161,11 +1259,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1179,16 +1279,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1196,18 +1299,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1226,14 +1332,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1242,70 +1351,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Trüki leitud krahhi andmed standardsesse väljundisse" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1828,19 +1987,19 @@ msgstr "NSS-i sulgemine nurjus." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1849,44 +2008,44 @@ msgstr "" - "Tekkis tuuma probleem, aga sinu masina tuum on ebapuhas (lipud:%s).\n" - "Tuuma haldajad ei suuda diagnoosida ebapuhtaid raporteid." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Vigade id-e nimekiri" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Määra bodhi serveri url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Määra väljalase" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Uuenduste otsimine" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Sellele pakile uuendusi ei leitud" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Selle paki kohalik versioon on uuem kui saadavaloleval värskendusel" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1908,65 +2067,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Kasutamine: abrt-cli [--versioon] KÄSK [KATALOOG]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Eemalda probleemide kataloog KATALOOG" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analüüsi ja teavita probleemide andmed KATALOOGis" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Kuva infot KATALOOGi kohta" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Kuva detailne raport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1974,49 +2134,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [valikud] KATALOOG..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2025,24 +2195,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/eu.po b/po/eu.po -index 1e1ce98..36c79c9 100644 ---- a/po/eu.po -+++ b/po/eu.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurazio fitxategia" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [aukerak]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "Errore ezezaguna" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Programa hau root bezala exekutatu behar da." - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "Ezin da chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1777,64 +1936,64 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Eguneraketen bila" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ez da eguneraketarik aurkitu pakete honentzat" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "Paketearen bertsio lokala eskuragarri dauden eguneraketak baino berriagoa da" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Erabilera: abrt-cli [--version] KOMANDOA [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/fa.po b/po/fa.po -index 84377cd..820fec0 100644 ---- a/po/fa.po -+++ b/po/fa.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/fa/)\n" - "Language: fa\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "گزارش" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -153,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -186,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -235,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -254,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -272,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "در syslog سیاهه شد" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -297,60 +323,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "دیمون سازی نکن" - msgid "Log to syslog even with -d" - msgstr "هم‌چنین در syslog با -d سیاهه شد" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "واکاوی دنباله برای %s شکست خورد" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1778,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/fi.po b/po/fi.po -index ff44364..b34f717 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -8,126 +8,134 @@ - # Ville-Pekka Vainio , 2011 - # Ville-Pekka Vainio , 2011-2013 - # Ville Skyttä , 2011 -+# Juhani Numminen , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-01-12 01:09-0500\n" -+"Last-Translator: Juhani Numminen \n" - "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/fi/)\n" - "Language: fi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Ongelmien raportointi" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Katsele ja raportoi ohjelmien kaatumisia" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "" -+msgstr "Hakemistoa ”%s” ei voida avata kirjoittamista varten" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" --msgstr "" -+msgstr "Ilmoitusta ei voida sulkea: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Ilmoita" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Käynnistä uudelleen" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Ongelma on raportoitu automaattisesti." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Ongelma raportoidaan, kun internet-" -+"yhteys on saatavilla." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Ota yhteyttä kehittäjään, jos haluat " -+"raportoida ongelman." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Jos haluat auttaa ongelman " -+"selvittämisessä, lähetä virheilmoitus." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "Ei voida näyttää ilmoitusta: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -138,13 +146,24 @@ msgstr "" - "Ohjelma, joka huomauttaa käyttäjälle uusista ABRT:n havaitsemista " - "ongelmista\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Kysy ennen hakemiston varastamista" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Lähetä uReport automaattisesti" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" -@@ -159,7 +178,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -192,42 +213,54 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Sulje" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "" -+msgstr "_Oletukset" - - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "" -+msgstr "Ongelmienraportointiasetukset" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" -@@ -235,20 +268,23 @@ msgstr "" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "" -+msgstr "Tietoja" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" --msgstr "" -+msgstr "Lopeta" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c ASETUSTIEDOSTO] [-r CHROOT] -d HAK\n" -+"\n" -+"Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -260,42 +296,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Ongelmahakemisto" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Asetustiedosto" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Käytä tätä hakemistoa RPM-juurihakemistona" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d HAK\n" -+"\n" -+"Tallenna säiliön metatiedot" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [valitsimet]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Kirjoita lokia syslogiin" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lisää ohjelmanimet lokiin" - -@@ -303,60 +342,50 @@ msgstr "Lisää ohjelmanimet lokiin" - msgid "Unknown error" - msgstr "Tuntematon virhe" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "”%s” ei ole kelvollinen ongelmakansio" -+msgid "'%s' is not a valid element name" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "”%s” ei ole kelvollinen ongelmakansio" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "" -+msgstr "Ei käyttöoikeutta" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" -+msgid "'%s' element can't be modified" -+msgstr "elementtiä ”%s” ei voi muokata" -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -364,12 +393,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Lopeta NUM sekunnin toimettomuuden jälkeen" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." - -@@ -390,18 +419,22 @@ msgstr "Älä aseta taustaprosessiksi" - msgid "Log to syslog even with -d" - msgstr "Kirjoita lokia syslogiin myös valitsimen -d kanssa" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Suorita TAPAHTUMA HAKemistoissa" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -431,73 +464,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -509,68 +543,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Ei ole kansio: ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (alkaa kauttaviivalla)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (alkaa pisteellä)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (sisältää ”..”)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (sisältää välilyönnin)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (sisältää sarkaimen)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -594,18 +628,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -646,7 +688,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Kohteen %s pinolistauksen jäsentäminen epäonnistui" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -735,12 +777,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -850,14 +924,43 @@ msgstr "Puuttuva debuginfo-tiedosto: {0}" - msgid "All debuginfo files are available" - msgstr "Kaikki debuginfo-tiedostot ovat saatavilla" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1072,7 +1175,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Sama kuin -d DumpLocation, DumpLocation on määritetty tiedostossa abrt.conf" -@@ -1083,16 +1187,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Tee ongelmahakemistosta kaikkien luettava" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1101,8 +1207,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1122,6 +1232,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1145,11 +1256,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1163,16 +1276,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1180,18 +1296,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1210,14 +1329,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1226,70 +1348,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1812,19 +1984,19 @@ msgstr "NSS:n sammuttaminen epäonnistui." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1834,44 +2006,44 @@ msgstr "" - " %s). Ytimen ylläpitäjät eivät pysty tutkimaan tärvellyistä ytimistä tehtyjä " - "raportteja." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1893,65 +2065,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Käyttö: abrt-cli [--version] KOMENTO [HAK]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Poista ongelmallinen hakemisto HAK" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analysoi ja raportoi ongelmadata HAKemistossa" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Tulosta tietoja HAKemistosta" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Näytä yksityiskohtainen raportti" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1959,49 +2132,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [valinnat] HAK..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2010,24 +2193,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/fr.po b/po/fr.po -index c106602..43a8e21 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -17,128 +17,145 @@ - # Sam Friedmann , 2014 - # Vincent HERBER , 2011 - # Vincent , 2011 -+# Jibec , 2015. #zanata - # Julie Carbone , 2015. #zanata -+# Maxim Therrien , 2015. #zanata - # dominique , 2015. #zanata -+# Jérôme Bivia , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-25 10:42-0500\n" --"Last-Translator: dominique \n" -+"PO-Revision-Date: 2016-01-16 11:19-0500\n" -+"Last-Translator: Jérôme Bivia \n" - "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" - "language/fr/)\n" - "Language: fr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Signalement de problèmes" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Voir et signaler des incidents d'application" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Impossible de s'approprier « %s »" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Impossible de fermer la notification : %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Oups!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" --msgstr "Rapporter" -+msgstr "Signaler" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Redémarrer" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " -+"problème a été automatiquement signalé." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " -+"problème sera signalé lorsque le réseau sera disponible." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu incident avec %s. Veuillez " -+"contacter le développeur si vous souhaitez signaler le problème." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Si vous " -+"souhaitez aider à résoudre le problème, transmettez un rapport." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " -+"Le problème a été automatiquement signalé." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " -+"Le problème sera signalé quand le réseau sera disponible." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident. Si vous souhaitez " -+"aider à résoudre le problème, transmettez un rapport." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Impossible d'afficher la notification : %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Impossible de lire à partir du canal gio : « %s »" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Impossible de déterminer l'encodage sur le canal gio : %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Impossible d'activer le mode non bloquant sur le canal gio : %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -146,9 +163,20 @@ msgid "" - msgstr "" - "& [-v] [DIR]...\n" - "\n" --"Appliquette notifiant l'utilisateur lorsque de nouveaux incidents sont " -+"Appliquette informant l'utilisateur lorsque de nouveaux incidents sont " - "détectés par ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Demander avant d'occuper furtivement un répertoire" -@@ -159,25 +187,21 @@ msgstr "Envoyer automatiquement le « uReport »" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "Rapporter en mode abrégé" -+msgstr "Signalement en mode abrégé" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "Rapporter silencieusement en mode abrégé" -+msgstr "Signalement silencieux en mode abrégé" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Le fichier du vidage de la mémoire est nécessaire pour générer la trace de " --"la pile — cette opération est consommatrice de temps et d'espace. ABRT " --"dispose d'un service générant la trace de la pile à partir du vidage de la " --"mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si " --"cette option est désactivée, ABRT téléversera le vidage de la mémoire sans " --"demander la permission." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -190,7 +214,7 @@ msgstr "" - "que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce " - "répertoire est déplacé de l'emplacement système vers votre répertoire " - "personnel. Quand cette option est désactivée, ABRT déplace le répertoire des " --"données de l'incident sans rien demander." -+"données de l'incident sans demander." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -202,7 +226,7 @@ msgstr "" - "Un « uReport » est une courte description de l'incident totalement anonyme. " - "ABRT utilise des « uReports » pour une détection rapide et globale des " - "doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le " --"début du processus de rapport. Quand cette option est activée, les " -+"début du processus de signalement. Quand cette option est activée, les " - "« uReports » sont adressés automatiquement immédiatement après la détection " - "de l'incident." - -@@ -215,7 +239,8 @@ msgstr "" - "Quand cette option est activée, le processus d'envoi de rapport initié en " - "cliquant sur le bouton Rapporter dans la bulle de notification d'incident " - "peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours " --"utiliser le navigateur d'incident par défaut pour faire un rapport complet." -+"utiliser le navigateur d'incident par défaut pour faire un signalement " -+"complet." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 - msgid "" -@@ -223,14 +248,10 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" - "Quand cette option est activée, ABRT n'affiche aucune notification des " --"incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est " --"activé." -+"incidents signalés. Elle ne prend effet que si le mode Signalement abrégé " -+"est activé." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Demander avant de téléverser le vidage de la mémoire" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -238,15 +259,15 @@ msgstr "" - "Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à " - "accès restreint si des données possiblement sensibles ont été détectées." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Demander un ticket privé pour informations sensibles" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifier des incidents incomplets" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -257,6 +278,22 @@ msgstr "" - "rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces " - "incidents." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Fermer" -@@ -282,14 +319,18 @@ msgstr "À propos" - msgid "Quit" - msgstr "Quitter" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Interroge la base de données des paquets et sauvegarde les noms du paquet et " -+"du composant" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -301,42 +342,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Répertoire des incidents" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Fichier de configuration" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Utiliser ce répertoire comme racine RPM" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Sauvegarder les métadonnées du conteneur" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Répertoire racine pour lancer les commandes du conteneur" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utiliser NUM en tant qu'UID client" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Journaliser vers syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Ajouter le nom des programmes dans le journal" - -@@ -344,78 +388,68 @@ msgstr "Ajouter le nom des programmes dans le journal" - msgid "Unknown error" - msgstr "Erreur inconnue" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "« %s » n'est pas un répertoire d'incidents valide" -+msgid "'%s' is not a valid element name" -+msgstr "« %s » n'est pas un nom d'élément valide" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "L'élément « %s » ne peut pas être modifié" -+msgid "'%s' is not a valid problem directory" -+msgstr "« %s » n'est pas un répertoire d'incidents valide" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Interdit" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "L'élément « %s » ne peut être modifié" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" --"Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " -+"Échec du chown sur le répertoire. Vérifiez les journaux du système pour plus " - "de détails." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "« %s » n'est pas un nom d'élément valide" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Impossible d'obtenir la taille de « %s »" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Il ne reste plus d'espace pour les incidents" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " -+"Le nom « %s » a été perdu, veuillez vérifier qu'un autre service utilisant " - "ce même nom ne tourne pas.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Quitter après NUM secondes d'inactivité" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Le programme doit être lancé en tant que root." - -@@ -442,18 +476,22 @@ msgstr "Ne pas lancer le démon" - msgid "Log to syslog even with -d" - msgstr "Journaliser vers syslog même avec -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Exécuter EVENT sur DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Communiquer directement à l'utilisateur" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -487,94 +525,95 @@ msgstr "Daemize" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" -+msgstr "Nombre de moteurs concurrents. La valeur par défaut est " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "Taille maximale de cache en Mio. La valeur par défaut est" -+msgstr "Taille maximale de cache en MiO. La valeur par défaut est " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Désactive l'authentification" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nom d'utilisateur du Support Red Hat" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " - "en créer un." - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Types ou chemins de certificat uReport SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Vous devez également indiquer --username pour --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "Vous pouvez utiliser --username ou --certificate" -+msgstr "Vous pouvez utiliser soit --username ou --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "Vous pouvez utiliser --username ou --anonymous" -+msgstr "Vous pouvez utiliser soit --username ou --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "Vous pouvez utiliser --anonymous ou --certificate" -+msgstr "Vous pouvez utiliser soit --anonymous ou --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Nombre d'arguments non valide" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valeur de l'option inconnue : « %s »\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Mot de passe :" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Impossible de continuer sans mot de passe\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "Autoreporting authentifié avec HTTP" -+msgstr "Signalement automatique authentifié avec HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "Autoreporting authentifié avec le Client SSL" -+msgstr "Signalement automatique authentifié avec le Client SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "Autoreporting anonyme" -+msgstr "Signalement automatique anonyme" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -595,79 +634,79 @@ msgstr "" - "stockées\n" - " FILENAME - Nom de fichier de l'archive téléversée\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "« {0} » n'est pas un répertoire" -+msgstr "'{0}' n'est pas un répertoire" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "Ignorer : « {0} » (commence par une barre oblique)" -+msgstr "Ignoré : '{0}' (commence par une barre oblique)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "Ignorer : « {0} » (commence par un point)" -+msgstr "Ignoré : '{0}' (commence par un point)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "Ignorer : « {0} » (contient ...)" -+msgstr "Ignoré : '{0}' (contient ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "Ignorer : « {0} » (contient un espace)" -+msgstr "Ignoré : '{0}' (contient un espace)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "Ignorer : « {0} » (contient un onglet)" -+msgstr "Ignoré : '{0}' (contient une tabulation)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Impossible de modifier le répertoire sur « {0} »" -+msgstr "Impossible de modifier le répertoire sur '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Type de fichier inconnu : « {0} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Impossible de créer un répertoire de travail dans « {0} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Impossible de déplacer « {0} » vers « {1} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Impossible de copier « {0} » sur « {1} »" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Erreur de vérification sur « {0} »" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Décompression de « {0} »" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Impossible de créer le répertoire « {0} »" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Impossible de décompresser « {0} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "Traitement de « {0} » réussi" - -@@ -691,21 +730,29 @@ msgstr "chown impossible sur « %s » : %s" - msgid "Deleting problem directory failed: %s" - msgstr "La suppression du répertoire d'incidents a échoué : %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Impossible d'obtenir la liste des incidents depuis abrt-dbus : %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Impossible de tester si l'élément existe via abrt-dbus : %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -738,9 +785,8 @@ msgid "" - msgstr "" - "& [options] -d DIR\n" - "\n" --"Analyse le backtrace C/C++, crée le hash de duplication, évalue la trace " --"arrrière et identifie la fonction du plantage dans le répertoire DIR des " --"incidents" -+"Analyse la trace C/C++, crée le hash de duplication, évalue la trace arrière\n" -+"et identifie la fonction du plantage dans le répertoire DIR des incidents" - - #. - #. * The parser failed. Compute the duphash from the executable -@@ -750,9 +796,9 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "Erreur lors de l'analyse du backtrace pour %s" -+msgstr "Erreur lors de l'analyse de la trace arrière pour %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Fil d'exécution planté introuvable" - -@@ -771,7 +817,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "Analyse en cours du vidage de la mémoire '%s'" -+msgstr "Analyse en cours du vidage de la mémoire « %s »" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-analyze-core.in:110 -@@ -787,7 +833,7 @@ msgstr "Utilisation : %s [-v] [-o FICHIER_SORTIE] -c FICHIER_CORE" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-analyze-core.in:164 - msgid "COREFILE is not specified" --msgstr "Le FICHIER_CORE n'est pas indiqué" -+msgstr "Le COREFILE n'est pas indiqué" - - #: ../src/plugins/abrt-action-analyze-oops.c:37 - msgid "" -@@ -797,7 +843,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcule et enregistre l'UUID et le DUPHASH pour le oops dans le répertoire " -+"Calcule et enregistre l'UUID et le DUPHASH pour le oups dans le répertoire " - "des incidents DIR" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 -@@ -807,6 +853,11 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"La trace ne contient pas assez de cadres de fonction pertinentes pour être " -+"rapportée. Bien qu'agaçant, cela ne démontre pas nécessairement un problème " -+"avec votre ordinateur. ABRT ne vous permettera pas de créer un rapport dans " -+"le système de suivi des bogues, mais vous pouvez contacter les mainteneurs " -+"du noyau via courriel." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -832,7 +883,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident " -+"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident en " - "python" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 -@@ -845,7 +896,7 @@ msgstr "Le fichier {0} n'existe pas" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "Extraction du texte du oops depuis le vidage mémoire" -+msgstr "Extraction du texte du oups depuis le vidage mémoire" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" -@@ -855,13 +906,13 @@ msgstr "Impossible de traiter {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "Impossible d'extraire le message oops : « {0} »" -+msgstr "Impossible d'extraire le message oups : « {0} »" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "Extraction réussie du texte du oops" -+msgstr "Extraction du texte du oups réussie" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -869,6 +920,38 @@ msgstr "" - "Le journal du noyau indique que des erreurs matérielles ont été détectées.\n" - "Ce problème n'est donc a priori pas logiciel.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -886,7 +969,7 @@ msgstr "Répertoires debuginfo supplémentaires" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" -+msgstr "Tuer gdb s'il tourne pendant plus de NUM secondes" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -894,7 +977,7 @@ msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" --msgstr "Le backtrace est généré et enregistré, %u octets" -+msgstr "La trace arrière a été générée et enregistrée, %u octets" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 - msgid "" -@@ -904,8 +987,8 @@ msgid "" - msgstr "" - "& [-v] [-r] -d DIR\n" - "\n" --"Créer une trace du vidage mémoire à partir du vidage mémoire et du binaire " --"correspondant" -+"Créer une trace arrière du vidage mémoire à partir du vidage mémoire et du " -+"binaire correspondant" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 - msgid "Do not hash fingerprints" -@@ -930,7 +1013,7 @@ msgid "Exiting on user command" - msgstr "Arrêt à la demande de l'utilisateur" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 --#, c-format -+#, fuzzy, c-format - msgid "" - "Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" - " [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -@@ -955,6 +1038,30 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Installe les informations de déboguage pour tous les BUILD_IDS listés dans " -+"BUILD_IDS_FILE\n" -+"dans CACHEDIR, utilisant TMPDIR en tant que dossier temporaire.\n" -+"Les anciens fichiers dans CACHEDIR sont supprimés jusqu'à temps que le " -+"répertoire soit plus petit que SIZE.\n" -+"\n" -+"Lit la configuration /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Être verbeux\n" -+" -y Non-interactif, assume « Oui » à toutes les questions\n" -+" --ids Défaut: build_ids\n" -+" --tmpdir Défaut: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Défaut: /var/cache/abrt-di\n" -+" --size_mb Défaut: 4096\n" -+" --pkgmgr Défaut: PackageManager de CCpp.conf ou 'dnf'\n" -+" -e,--exact Télécharge seulement les fichiers spécifiés\n" -+" --repo Motif à utiliser lors de la recherche de dépôts\n" -+" Défaut: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -974,10 +1081,12 @@ msgstr "{0} des fichiers debuginfo ne sont pas installés" - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"La configuration de l'addition CCpp est invalide, gestionnaire de paquets " -+"invalide: « %s »" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" --msgstr "Le fichier requis est manquant : {0}" -+msgstr "Fichier requis manquant : {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" -@@ -987,7 +1096,36 @@ msgstr "Fichier debuginfo manquant : {0}" - msgid "All debuginfo files are available" - msgstr "Tous les fichiers debuginfo sont disponibles" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -997,7 +1135,7 @@ msgstr "" - "sensibles). Si votre réponse est « Non », une analyse locale sera effectuée " - "(ce qui pourrait télécharger une énorme quantité de données)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1041,7 +1179,7 @@ msgstr "Impossible de lancer « %s », le message d'erreur est : « %s »" - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "N'est pas un numéro dans le fichier « %s »" -+msgstr "Non-numéro dans le fichier « %s »" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:99 -@@ -1066,7 +1204,7 @@ msgstr "uReport a déjà été envoyé, il ne sera pas envoyé à nouveau" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "Ajout de votre nom à la liste de CC de l'anomalie sur Bugzilla" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1116,7 +1254,7 @@ msgstr "Signal causé par l'écriture dans un tube cassé" - - #: ../src/plugins/abrt-gdb-exploitable:607 - msgid "ABRT signal (abort() was called?)" --msgstr "Signal ABRT (abort() a été appelé ?)" -+msgstr "Signal ABRT (abort() a été appelé?)" - - #: ../src/plugins/abrt-gdb-exploitable:616 - msgid "XCPU signal (over CPU time limit)" -@@ -1132,7 +1270,7 @@ msgstr "Signal TRAP (peut être une anomalie dans un débogueur/traceur)" - - #: ../src/plugins/abrt-gdb-exploitable:628 - msgid "SYS signal (unknown syscall was called?)" --msgstr "Signal SYS (un appel système inconnu a été appelé ?)" -+msgstr "Signal SYS (un appel système inconnu a été appelé?)" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" -@@ -1144,7 +1282,7 @@ msgstr "Division par zéro" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "Instruction illégale (passage à une adresse aléatoire ?)" -+msgstr "Instruction illégale (passage à une adresse aléatoire?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" -@@ -1160,7 +1298,7 @@ msgstr "Écriture à une adresse invalide" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" --msgstr "La sous-routine retourne à une adresse invalide (pile corrompue ?)" -+msgstr "La sous-routine retourne à une adresse invalide (pile corrompue?)" - - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 -@@ -1182,15 +1320,15 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "Raison possible de l'arrêt brutal :" -+msgstr "Raison possible de l'arrêt brutal : " - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " --msgstr "Taux d'exploitabilité (échelle 0-9) :" -+msgstr "Taux d'exploitabilité (échelle 0-9) : " - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "Instruction actuelle :" -+msgstr "Instruction actuelle : " - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" -@@ -1219,12 +1357,12 @@ msgid "" - msgstr "" - "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" - "\n" --"Extrait le oops de FILE (ou de l'entrée standard)" -+"Extrait le oups de FILE (ou de l'entrée standard)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "Afficher les oops noyau trouvés sur la sortie standard" -+msgstr "Afficher les oups noyau trouvés sur la sortie standard" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1233,15 +1371,16 @@ msgstr "Afficher les oops noyau trouvés sur la sortie standard" - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" --"Créer un nouveau répertoire d'incidents dans DIR pour chaque oops découvert" -+"Créer un nouveau répertoire d'incidents dans DIR pour chaque oups découvert" - - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" --"Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est " -+"Identique à l'option -d EmplacementDeVidage, l'emplacement du vidage est " - "spécifié dans abrt.conf" - - #: ../src/plugins/abrt-dump-oops.c:104 -@@ -1250,16 +1389,18 @@ msgstr "Sauvegarder les informations extraites dans PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Rendre le répertoire des incidents lisible par tout le monde" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Limiter la création de répertoire d'incident à 1 par seconde" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" - -@@ -1268,29 +1409,36 @@ msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" - msgid "Failed to compile regex" - msgstr "Échec de la compilation des expressions régulières" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Impossible de mettre à jour l'incident : plus d'un oops trouvé" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" - msgstr "" -+"Échec de l'obtention de toutes les informations nécessaires de journald" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Ne sauvegardera pas un plantage répétitif après %ds (limite: %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" - msgstr "" -+"Échec de la sauvegarde des données du problème détecté dans la base d'ABRT" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "Échec de l'initialisation de la surveillance systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" -@@ -1305,60 +1453,84 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrait un vidage de processus de systemd-journal\n" -+"\n" -+"Les options -c et -e entrent en conflit car les deux spécifient le premier " -+"message de lecture.\n" -+"\n" -+"-e n'est utile seulement pour -f car la suite du journal débute par la " -+"lecture\n" -+"du journal entier si la dernière position lue n'est pas disponible.\n" -+"\n" -+"La dernière position lue est sauvegardée dans " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" -+"Créer un nouveau répertoire d'incidents dans DIR pour chaque vidage de la " -+"mémoire découvert" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "Débuter la lecture du systemd-journal depuis la position du CURSEUR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "Débuter la lecture du systemd-journal depuis la fin" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Limiter la création de répertoire d'incident à 1 par INT seconde(s)" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Identique à -t INT, INT est spécifié dans plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" -+"Suivre systemd-journal depuis la dernière position lue (si disponible)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "Vous devez spécifier soit -c CURSEUR ou -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "Impossible d'ouvrir systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "Impossible de déplacer le curseur vers la fin du journal" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" -+"Impossible de définir la position du curseur de systemd-journal « %s »" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Impossible de lire les données du journal." - -@@ -1377,14 +1549,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Lire tous les fichiers de journaux de toutes les machines" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Lire tous les fichiers de journaux dans le répertoire PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1393,12 +1568,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1408,59 +1629,63 @@ msgstr "" - "\n" - "Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Afficher les données de plantage sur la sortie standard" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2006,7 +2231,7 @@ msgstr "Impossible de fermer NSS." - msgid "Sleeping for %d seconds" - msgstr "Mise en sommeil pour %d secondes" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2014,7 +2239,7 @@ msgstr "" - "Un problème de noyau s'est produit car le BIOS est cassé. Malheureusement, " - "de tels problèmes ne peuvent pas être corrigés par les mainteneurs du noyau." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2023,7 +2248,7 @@ msgstr "" - "charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger ce " - "problème." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2033,24 +2258,24 @@ msgstr "" - "Les mainteneurs du noyau n'ont pas la possibilité de diagnostiquer les " - "rapports teintés." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Modules teintés : %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Liste des identifiants d'anomalies" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Spécifier l'URL d'un serveur bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Spécifier une révision" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2060,21 +2285,21 @@ msgstr "" - "\n" - "Rechercher des mises à jour sur le serveur bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Recherche de mises à jour" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Mises à jour introuvables pour ce paquet" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La version de ce paquet est plus récente que les mises à jour disponibles" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2103,69 +2328,70 @@ msgstr "Afficher les oops trouvés" - msgid "Delete files with found oopses" - msgstr "Supprimer les fichiers avec des oops trouvés" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "« %s » identifie plus d'un répertoire d'incident" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Liste des incidents [dans DIR]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Supprimer le répertoire d'incidents DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyser et rapporter les données des incidents dans DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimer des informations sur DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Affiche le nombre de plantages récents" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Traiter de multiples problèmes" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Répertorier les problèmes non rapportés uniquement" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Afficher le rapport détaillé" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Répertorier uniquement les problèmes plus récents que la date indiquée" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Répertorier uniquement les incidents plus anciens que la date indiquée" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2176,55 +2402,65 @@ msgstr "" - "Veuillez envisager de l'activer en effectuant\n" - "la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Un texte plus grand que ce qui suit sera abrégé" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Répertoire d'incidents « %s » inconnu" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Affiche uniquement le nombre d'incident sans autre message" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Suppression de « %s »" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Supprimer PROBLEM_DIR après le rapport" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Suppression de « %s »" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" -@@ -2236,27 +2472,182 @@ msgstr "" - "Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Rapporter « %s »" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Sans l'argument --since, réitère tous les problèmes détectés." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/gl.po b/po/gl.po -index 16b716a..61bd784 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: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,102 +29,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Non é posíbel asumir a propiedade sobre «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Non é posíbel abrir o directorio para escribir «%s»" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Non é posíbel fechar a notificación: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informe" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Non é posíbel mostrar a notificación: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Non é posíbel ler da canle gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Non é posíbel definir a codificación da canle gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Non é posíbel activar o modo sen bloqueo para a canle gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -134,6 +134,17 @@ msgstr "" - "\n" - "Applet que notifica o usuario cando o ABRT detecta problemas novos\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -155,7 +166,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -188,30 +201,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notificar os problemas incompletos" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Pechar" -@@ -237,14 +262,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -256,11 +281,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Directorio de problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Ficheiro de configuración" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -274,24 +299,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcións]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Empregar NUM como identificador de usuario do cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Rexistrar en syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Engadir os nomes dos programas ao rexistro" - -@@ -299,63 +325,53 @@ msgstr "Engadir os nomes dos programas ao rexistro" - msgid "Unknown error" - msgstr "Produciuse un erro descoñecido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "«%s» non é un directorio de problemas válido" -+msgid "'%s' is not a valid element name" -+msgstr "«%s» non é un nome válido para un elemento" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Non é posíbel modificar o elemento «%s»" -+msgid "'%s' is not a valid problem directory" -+msgstr "«%s» non é un directorio de problemas válido" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Non autorizado " - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Non é posíbel acceder ao problema para modificar" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Non é posíbel modificar o elemento «%s»" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Fallou a execución de chown no directorio. Comprobe os rexistros do sistema " - "para máis detalles." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "«%s» non é un nome válido para un elemento" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Non é posíbel obter o tamaño de «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Non fica espazo para os problemas" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -365,12 +381,12 @@ msgstr "" - "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en " - "execución.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Saír despois de NUM segundos de inactividade" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa débese executar como administrador." - -@@ -397,18 +413,22 @@ msgstr "Non converter en daemon" - msgid "Log to syslog even with -d" - msgstr "Rexistrar en syslog mesmo con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event DIR DE EVENTO..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Executar EVENTO en DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunicar directamente ao usuario" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -438,73 +458,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "O número de argumentos é incorrecto" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -516,68 +537,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -601,18 +622,26 @@ msgstr "Non é posíbel cambiar o propietario de «%s»: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Fallou a eliminación do directorio de problemas: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Non é posíbel obter a lista do problema de abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -661,7 +690,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Fallou a análise do trazado inverso de %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -763,12 +792,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -881,14 +942,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1103,7 +1193,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1113,16 +1204,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1131,8 +1224,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1152,6 +1249,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1175,11 +1273,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1193,16 +1293,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1210,18 +1313,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1240,14 +1346,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1256,70 +1365,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1819,64 +1978,64 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de identificadores dos fallos" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "A buscar actualizacións" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Non se atopou ningunha actualización para este paquete" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "A versión do paquete local é máis recente que as actualizacións dispoñíbeis" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1900,65 +2059,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostrar un informe detallado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1966,49 +2126,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Imprimir só o número de problemas sen ningunha mensaxe" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Imprimir só os problemas anteriores á marca temporal indicada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2017,24 +2187,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/gu.po b/po/gu.po -index 7f25c54..a95b17f 100644 ---- a/po/gu.po -+++ b/po/gu.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/gu/)\n" - "Language: gu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -33,102 +33,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ની માલિકી લઇ શકાતી નથી" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "અહેવાલ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "સૂચનાને બતાવી શકાતુ નથી: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ચેનલમાંથી વાંચી શકાતુ નથી: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ચેનલ પર એનકોડીંગ સુયોજિત કરી શકાતુ નથી: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી સ્થિતિને ચાલુ કરી શકાતી નથી: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -139,6 +139,17 @@ msgstr "" - "એપલેટ કે જે વપરાશકર્તાને સૂચન કરે છે જ્યારે નવી સમસ્યાઓ ABRT દ્દારા શોધાયેલ " - "છે\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ડિરેક્ટરીની ચોરી પહેલાં પૂછો" -@@ -160,12 +171,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"coredump ફાઇલ સ્ટેક ટ્રેસને પેદા કરવા માટે જરૂરી છે કે જે સમય અને જગ્યા " --"વપરાશ ક્રિયા છે. ABRT સેવાને પૂરુ પાડે છે કે જે coredump માંથી સ્ટેક ટ્રેસને " --"પેદા કરે છે, પરંતુ તમે આ સેવા માટે coredump ને અપલોડ કરવુ જ પડશે. નિષ્ક્રિય " --"થયેલ ABRT આ વિકલ્પ સાથે તેમને પૂછ્યા વગર coredump ને અપલોડ કરશે." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -211,10 +220,6 @@ msgstr "" - "અસર થાય છે જો ટૂંકી થયેલ અહેવાલીકરણ સક્રિય થયેલ હોય." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -222,15 +227,15 @@ msgstr "" - "સક્રિય થયેલ ABRT આ વિકલ્પ સાથે મર્યાદિત થયેલ પ્રવેશ સાથે હંમેશા ભૂલ ટિકીટ " - "બનાવે છે જો શક્ય સંવેદનશીલ માહિતી બનાવેલ હોય." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "સંવેદનશીલ માહિતી માટે ખાનગી ટિકિટની વિનંતી" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "અપૂર્ણ સમસ્યાઓ સૂચિત" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -240,6 +245,22 @@ msgstr "" - "વપરાશકર્તા બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડવા માટે " - "ક્રમમાં, ABRT એ આ સમસ્યાઓને મોકલવા માટે તમને પરવાનગી આપશે નહિં." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "બંધ કરો (_C)" -@@ -265,14 +286,14 @@ msgstr "વિશે" - msgid "Quit" - msgstr "બહાર નીકળો" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -284,11 +305,11 @@ msgstr "" - msgid "Problem directory" - msgstr "સમસ્યા ડિરેક્ટરી" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "રૂપરેખાંકન ફાઇલ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -302,24 +323,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ક્લાયન્ટ uid તરીકે NUM ને વાપરો" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog માં લૉગ લો" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "લૉગ રાખવા માટે કાર્યક્રમ નામો ઉમેરો" - -@@ -327,60 +349,50 @@ msgstr "લૉગ રાખવા માટે કાર્યક્રમ ન - msgid "Unknown error" - msgstr "અજ્ઞાત ભૂલ" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ઘટકને બદલી શકાતુ નથી" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "અધિકૃત નથી" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "સૂચના માટે સમસ્યાને વાપરી શકાતુ નથી" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" -+msgid "'%s' element can't be modified" -+msgstr "'%s' ઘટકને બદલી શકાતુ નથી" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' નું માપ મેળવી શકાતુ નથી" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "સમસ્યાની જગ્યા બાકી રહેલ નથી" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘટક '%s' ને કાઢી શકાતુ નથી" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -390,12 +402,12 @@ msgstr "" - "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી " - "સેવા ચાલી રહી નથી.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "નિષ્ક્રિયતાની NUM સેકંડ પછી બહાર નીકળો" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલાવવો જોઇએ." - -@@ -422,18 +434,22 @@ msgstr "ડિમોનાઇઝ કરો નહિં" - msgid "Log to syslog even with -d" - msgstr "-d સાથે પણ syslog નો લૉગ લો" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR પર EVENT ચલાવો" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "સીધુ વપરાશકર્તા સાથે વાર્તાલાપ કરો" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -472,88 +488,89 @@ msgstr "સહવર્તી કામદારો સંખ્યા. મૂ - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB માં મહત્તમ કેશ માપ. મૂળભૂત છે" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "સત્તાધિકરણને બંધ કરો" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support વપરાશકર્તા નામ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support પાસવર્ડ, જો આપેલ ન હોય તો, તેની માટે પ્રોમ્પ્ટ કરવામાં આવશે" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL પ્રમાણપત્ર પાથ અથવા પ્રમાણપત્ર પ્રકાર" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "તમારે --password માટે --username ને પણ સ્પષ્ટ કરવુ જ જોઇએ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "તમારે ક્યાંતો --username અથવા --certificate ને વાપરી શકો છો" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "તમે ક્યાંતો --username અથવા --anonymous ને વાપરી શકો છો" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "તમે ક્યાંતો --anonymous અથવા --certificate વાપરી શકો છો" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "દલીલોની અયોગ્ય સંખ્યા" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "પાસવર્ડ:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "પાસવર્ડ વગર ચાલુ કરી શકાતુ નથી\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL ક્લાયન્ટ સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "અનામિક આપોઆપ અહેવાલીકરણ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -573,83 +590,83 @@ msgstr "" - " FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ડિરેક્ટરી નથી: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "છોડી રહ્યા છે: '{0}' (સ્લેશ સાથે શરૂ કરે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "છોડી રહ્યા છે: '{0}' (બિંદુ સાથે શરૂ કરે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "છોડી રહ્યા છે: '{0}' (સમાવે છે ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "છોડી રહ્યા છે: '{0}' (જગ્યાને સમાવે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "છોડી રહ્યા છે: '{0}' (ટૅબને સમાવે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' માટે ડિરેક્ટરીને બદલી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "અજ્ઞાત ફાઇલ પ્રકાર: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' માં કાર્ય કરવાની ડિરેક્ટરીને બનાવી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' થી '{1}' ને ખસેડી શકાતુ નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' થી '{1}' માં નકલ કરી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' પર ચકાસણી ભૂલ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' ને ખોલી રહ્યા છે" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ડિરેક્ટરીને બનાવી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ને ખોલી શકાતુ નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' પ્રક્રિયા સફળતાપૂર્વક થઇ" - -@@ -673,18 +690,26 @@ msgstr "'%s' નું chown કરી શકાતુ નથી: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ડિરેક્ટરીની સમસ્યાને કાઢી નાંખવામાં નિષ્ફળતા: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus માંથી સમસ્યા યાદીને મેળવી શકાતી નથી: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -732,7 +757,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s બેકટ્રેસ પાર્સિંગ નિષ્ફળ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ભંગાણ થ્રેડ મળ્યુ નથી" - -@@ -838,7 +863,7 @@ msgstr "oops સંદેશાને કાઢી શકાતુ નથી: '{ - msgid "Oops text extracted successfully" - msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી નાંખેલ છે" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -846,6 +871,38 @@ msgstr "" - "કર્નલ લૉગ સૂચવે છે કે હાર્ડવેર ભૂલો મળી આવી હતી.\n" - "આ મોટે ભાગે સોફ્ટવેર સમસ્યા નથી.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -963,7 +1020,36 @@ msgstr "ગેરહાજર debuginfo ફાઇલ: {0}" - msgid "All debuginfo files are available" - msgstr "બધી ડિબગ જાણકારી ફાઇલો ઉપલબ્ધ છે" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -973,7 +1059,7 @@ msgstr "" - "જો તમારો જવાબ 'ના' હોય તો, સ્ટેક ટ્રેસ સ્થાનિક રીતે ઉત્પન્ન કરાશે. (તે વિશાળ " - "પ્રમાણમાં માહિતીને ડાઉનલોડ કરી શકે છે)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1210,7 +1296,8 @@ msgstr "મળેલ દરેક oops માટે DIR માં નવી સ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation નાં જેવી, DumpLocation એ abrt.conf માં સ્પષ્ટ થયેલ છે" - -@@ -1220,16 +1307,18 @@ msgstr "PROBLEM માં કાઢી નાંખેલ જાણકારી - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "સમસ્યા ડિરેક્ટરીને દુનિયામાં વાંચી શકાય એ રીતે બનાવો" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "દરેક 1 સેકંડે થ્રોટલ સમસ્યા ડિરેક્ટરી નિર્માણ" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છાપો અને બહાર નીકળો" - -@@ -1239,9 +1328,13 @@ msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છ - msgid "Failed to compile regex" - msgstr "regex ને કમ્પાઇલ કરવામાં નિષ્ફળતા" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "સમસ્યાને સુધારી શકાતી નથી: એક કરતા વધારે oops મળ્યુ" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1260,6 +1353,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1283,11 +1377,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1301,16 +1397,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1318,18 +1417,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1348,14 +1450,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1364,12 +1469,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1379,58 +1530,62 @@ msgstr "" - "\n" - "FILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "મૂળભૂત આઉટપુટ પર મળેલ ભંગાણ માહિતીને છાપો" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "મળેલ દરેક ભંગાણ માટે DIR માં સમસ્યા ડિરેક્ટરીને બનાવો" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1971,7 +2126,7 @@ msgstr "NSS ને બંધ કરવામાં નિષ્ફળતા." - msgid "Sleeping for %d seconds" - msgstr "%d સેકંડ માટે નિષ્ક્રિય" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1979,7 +2134,7 @@ msgstr "" - "બગડેલા BIOS ના કારણે કર્નલ સમસ્યા ઉદ્ભવી. કમનસીબે, આવી સમસ્યાઓ કર્નલના " - "માલિકોથી સુધારી શકાતી નથી." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1987,7 +2142,7 @@ msgstr "" - "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારું હાર્ડવેર આધારભૂત નથી, તેથી કર્નલ માલિકો આ " - "સમસ્યા સુધારવામાં અસમર્થ છે." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1996,24 +2151,24 @@ msgstr "" - "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારુ કર્નલને દૂષિત કરવામાં આવ્યુ છે (ફ્લેગ:%s). " - "કર્નલ સંચાલકો દૂષિત થયેલ અહેવાલોનું નિદાન કરવા માટે અસક્ષમ છે." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " લાઇસન્સ વગરનાં મોડ્યુલો: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ભૂલ ids ની યાદી" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "bodhi સર્વર url સ્પષ્ટ કરો" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "પ્રકાશન સ્પષ્ટ કરો" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2023,20 +2178,20 @@ msgstr "" - "\n" - "bodhi સર્વર પર સુધારાઓ માટે શોધો" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "સુધારા માટે શોધી રહ્યા છે" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "આ પેકેજ માટે સુધારો મળ્યો નથી" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "પેકેજની સ્થાનિક આવૃત્તિ ઉપલબ્ધ સુધારા કરતા નવી છે" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2065,66 +2220,67 @@ msgstr "મળેલ oopses ને છાપો" - msgid "Delete files with found oopses" - msgstr "મળેલ oopses સાથે ફાઇલોને કાઢી નાંખો" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' એ એક કરતા વધારે સમસ્યા ડિરેક્ટરીને ઓળખે છે" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "સમસ્યાઓની યાદી કરો [DIRs માં]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "સમસ્યા ડિરેક્ટરી DIR ને દૂર કરો" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR માં સમસ્યા માહિતીનું વિશ્ર્લેષણ અને અહેવાલ કરો" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR વિશે જાણકારીને છાપો" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "તાજેતરનાં ભંગાણોની ગણતરીને છાપો" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "માત્ર નહિં-અહેવાલ અપાયેલ સમસ્યાઓની જ યાદી આપો" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "વિગત થયેલ અહેવાલને બતાવો" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા વધારે તાજેતરની સમસ્યાઓની યાદી કરો" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા જૂની સમસ્યાઓની ફક્ત યાદી કરો" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2135,54 +2291,64 @@ msgstr "" - "કરવાનું ધ્યાન રાખો\n" - "'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "આનાં કરતા વધારે લખાણને સંક્ષિપ્ત બતાવવામાં આવશે" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "આવી સમસ્યા ડિરેક્ટરી '%s' નથી" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "કોઇપણ સંદેશા વગર ફક્ત સમસ્યાની ગણતરીને છાપો" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા ફક્ત વધારે તાજેતની સમસ્યાઓને છાપો" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT એ %u સમસ્યા(ઓ) ને શોધી. વધારે જાણકારી માટે ચલાવો: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' ને કાઢી રહ્યા છે" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "અહેવાલ થયા પછી PROBLEMDIR ને દૂર કરો (_D)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' ને કાઢી રહ્યા છે" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" -@@ -2193,27 +2359,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "ક્રિયાઓ: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' નો અહેવાલ કરી રહ્યા છે" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "આગળની સમસ્યા માટે ENTER ને દબાવો:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since દલીલ વગર, બધી શોધાયેલ સમસ્યાઓ પર પુનરાવર્તિત થાય છે." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાયેલ સમસ્યાઓને પસંદ કરે છે" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/he.po b/po/he.po -index a020d49..d6b6a71 100644 ---- a/po/he.po -+++ b/po/he.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/he/)\n" - "Language: he\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "דווח" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -153,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -186,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -235,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -254,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -272,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "רשום ליומן המערכת" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -297,60 +323,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "Do not daemonize" - msgid "Log to syslog even with -d" - msgstr "Log to syslog even with -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "ניתוח מידע הקריסה נכשל עבור %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1785,63 +1944,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1863,65 +2022,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1929,49 +2089,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1980,24 +2150,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/hi.po b/po/hi.po -index 7065a3f..0ec276c 100644 ---- a/po/hi.po -+++ b/po/hi.po -@@ -18,7 +18,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -28,7 +28,7 @@ msgstr "" - "language/hi/)\n" - "Language: hi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -38,102 +38,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' का स्वामित्व नहीं ले सकता है" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "अधिसूचना बंद नहीं कर सकता है: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "रिपोर्ट" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "अधिसूचना नहीं दिखा सकता है: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio चैनल से पढ़ा नहीं जा सकता: '% s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -144,6 +144,17 @@ msgstr "" - "एप्प्लेट जो उपयोक्ता को अधिसूचित करता है जब नई समस्या ABRT द्वारा पायी जाती " - "है\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -164,18 +175,15 @@ msgstr "संक्षिप्त रिपोर्टिंग" - msgid "Silent shortened reporting" - msgstr "मौन संक्षिप्त रिपोर्टिंग" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत " --"करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित " --"करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ " --"निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -223,29 +231,24 @@ msgstr "" - " इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. " - "यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "कोरडंप अपलोड के पहले पूछें" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "संवेदनशील सूचना के लिए निजी टिकट का निवेदन करें" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "अपूर्ण समस्या अधिसूचित करें" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -255,6 +258,22 @@ msgstr "" - "आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के " - "सुपुर्द करने की छूट नहीं देगा." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -281,14 +300,14 @@ msgstr "परिचय" - msgid "Quit" - msgstr "बाहर" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -300,11 +319,11 @@ msgstr "" - msgid "Problem directory" - msgstr "समस्या निर्देशिका" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "विन्यास फाइल" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -318,24 +337,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [विकल्प]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM को बतौर क्लायंट uid उपयोग करें" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "सिसलॉग में लॉग करेंसिस्टल" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "लाग करने के लिए अधिक प्रोग्राम नाम" - -@@ -343,61 +363,51 @@ msgstr "लाग करने के लिए अधिक प्रोग् - msgid "Unknown error" - msgstr "अज्ञात त्रुटि" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" -+msgid "'%s' is not a valid element name" -+msgstr "'% s' एक वैध तत्व का नाम नहीं है" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "प्राधिकृत नहीं" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "संशोधन के लिए समस्या का उपयोग नहीं कर सकते है" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chowning डायरेक्टरी विफल. अधिक जानकारी के लिए सिस्टम लॉग की जाँच करें." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'% s' एक वैध तत्व का नाम नहीं है" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' का आकार पा नहीं सकता है" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "कोई समस्या स्थान नहीं छोड़ दिया है" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "तत्व '%s' को समस्या निर्देशिका '%s' से मिटा नहीं सकता है" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -407,12 +417,12 @@ msgstr "" - "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व " - "रखती है नहीं चल रहा हो.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM सेकेंड की निष्क्रियता के बाद बाहर निकलें" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "इस प्रोग्राम को जरूर बतौर रूट चलाया जाना चाहिए." - -@@ -438,18 +448,22 @@ msgstr "डेमॉनाइज मत करें" - msgid "Log to syslog even with -d" - msgstr "-d के साथ सिसलॉग घटना में लॉग-d के साथ सिस्" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT को DIR पर चलाएँ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "उपयोक्ता से सीधे संचार करें" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -487,89 +501,90 @@ msgstr "सहवर्ती वर्कर की संख्या. तय - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB में अधिकतम कैश आकार. तयशुदा है " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "सत्यापन बंद करें" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat समर्थन उपयोक्ता नाम" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat समर्थन कूटशब्द, यदि नहीं दिया हुआ है तो इसके लिए कोई प्रांप्ट निर्गत " - "किया जाएगा" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL प्रमाणपत्र पथ या प्रमाणपत्र प्रकार" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "आपको --username को --password के लिए निर्दिष्ट करने की जरूरत होगी" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "आप या तो --username या --certificate का प्रयोग कर सकते हैं" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "आप या तो --username या --anonymous का प्रयोग कर सकते हैं" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "आप या तो --anonymous या --certificate का प्रयोग कर सकते हैं" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "तर्क की अवैध संख्या" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "अज्ञात विकल्प मान '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "कूटशब्द:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "कूटशब्द के बिना जारी नहीं रख सकते हैं\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP सत्यापन स्वचालित रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL क्लायंट सत्यापन स्वचालित रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "अनाम स्वचालित रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -589,83 +604,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "निर्देशिका नहीं है: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "छोड़ रहा है: '{0}' (starts with slash)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "छोड़ रहा है: '{0}' (starts with dot)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "छोड़ रहा है: '{0}' (contains ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "छोड़ रहा है: '{0}' (contains space)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "छोड़ रहा है: '{0}' (contains tab)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' में निर्देशिका बदल नहीं सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "अज्ञात फाइल प्रकार: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' में कार्यशील निर्देशिका नहीं बना सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' को '{1}' में खिसका नहीं सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' को '{1}' में नहीं नक़ल ले सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' पर सत्यापन त्रुटि" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' को खोला जा रहा है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' निर्देशिका नहीं बना सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' खोल नहीं सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' को सफलतापूर्वक प्रक्रिया किया गया" - -@@ -689,18 +704,26 @@ msgstr "chown '%s' नहीं कर सकता है: %s" - msgid "Deleting problem directory failed: %s" - msgstr "समस्या निर्देशिका को मिटाना विफल रहा: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus से समस्या सूची पा नहीं सकता है: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -747,7 +770,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s के लिए बैकट्रैस विश्लेषण विफल" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "क्रैश लड़ी नहीं मिला" - -@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" - msgstr "वूप्स पाठ सफलतापूर्वक निकाले गए" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -862,6 +885,38 @@ msgstr "" - "कर्नेल लॉग बताता है कि हार्डवेयर त्रुटि का पता चला.\n" - "यह अधिक संभव है कि सॉफ्टवेयर समस्या नहीं है.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -977,7 +1032,36 @@ msgstr "अनुपस्थित डिबगइंफो फ़ाइल: {0 - msgid "All debuginfo files are available" - msgstr "सभी डिबगइंफो फ़ाइलें उपलब्ध हैं" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -987,7 +1071,7 @@ msgstr "" - "आपका उत्तर 'नहीं' है, तो एक स्टैक ट्रैस स्थानीय रूप से बनाया जाएगा. (यह बड़ी " - "मात्रा में आँकड़ा डाउनलोड कर सकता है)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1224,7 +1308,8 @@ msgstr "DIR में हर वूप्स क्षण के लिए न - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation की तरह, DumpLocation को abrt.conf में निर्दिष्ट है" - -@@ -1234,16 +1319,18 @@ msgstr "समस्या में निकाले सूचना को - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "समस्या निर्देशिका को सभी के लिए लिखने योग्य बनाएँ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "1 प्रति सेकेंड से थ्रोटल समस्या निर्देशिका निर्माण" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout में खोज स्ट्रिंग छापें और बाहर निकलें" - -@@ -1253,9 +1340,13 @@ msgstr "stdout में खोज स्ट्रिंग छापें औ - msgid "Failed to compile regex" - msgstr "रिजेक्स कंपाइल करने में विफल" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1274,6 +1365,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1297,11 +1389,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1315,16 +1409,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1332,18 +1429,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1362,14 +1462,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1378,12 +1481,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1393,58 +1542,62 @@ msgstr "" - "\n" - "फ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "मानक आउटपुट पर छपाई में क्रैश आँकड़ा मिला" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "DIR में हर क्रैश के लिए नयी समस्या निर्देशिका बनाएँ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1978,7 +2131,7 @@ msgstr "NSS शटडाउन करने में विफल." - msgid "Sleeping for %d seconds" - msgstr "%d सेकेंड से लिए सुप्त" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1986,7 +2139,7 @@ msgstr "" - "कर्नेल समस्या आयी, टूट बीआईओएस के कारण. दुर्भाग्य से,ऐसे समस्या देखभालकर्ता " - "ठीक करने में असमर्थ हैं." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1994,7 +2147,7 @@ msgstr "" - "कर्नेल समस्या आयी, लेकिन आपका हार्डवेयर असमर्थित है, इसलिए कर्नेल " - "देखभालकर्ता इस समस्या के निदान में असमर्थ हैं." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2003,24 +2156,24 @@ msgstr "" - "कर्नेल समस्या आयी, लेकिन आपका कर्नेल टेंट किया गया है (फ्लैग:%s). कर्नेल " - "देखभाल कर्ता टेंट किया रिपोर्ट के निदान में असमर्थ है." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " टेंटेड मॉड्यूल: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "बग आईडी की सूची" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "बोधि सर्वर यूआरएल निर्दिष्ट करें" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "किसी रिलीज को निर्दिष्ट करें" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2030,20 +2183,20 @@ msgstr "" - "\n" - "बोधि सर्वर पर अद्यतन के लिए खोजें" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "अद्यतन के लिए खोजा जा रहा है" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "इस संकुल के लिए कोई अद्यतन नहीं मिला" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "संकुल का स्थानीय संस्करण उपलब्ध अद्यतन के बनिस्बत नया है" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2071,67 +2224,68 @@ msgstr "छपाई में वूप्स मिले" - msgid "Delete files with found oopses" - msgstr "मिले वूप्स से फ़ाइल मिटाएँ" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ने एकाधिक समस्या निर्देशिका की पहचान की" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "[in DIRs] में समस्या की सूची दें" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "समस्या निर्देशिका DIR को हटाएँ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR में समस्या आँकड़े को विश्लेषित और रिपोर्ट करें" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR के बारे में प्रिंट सूचना" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "हालिया क्रैश की गिनती छापें" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "एकाधिक समस्या की प्रक्रिया करें" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "बिना रिपोर्ट की गई समस्या को सूचीबद्ध करें" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "विस्तृत विवरण देखें" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत केवल समस्याओं की सूची दें" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "निर्दिष्ट समयस्टैंप से पुराने समस्या की केवल सूची दें" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2142,55 +2296,65 @@ msgstr "" - "'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत " - "करके\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "इससे बड़ा पाठ संक्षिप्त कर दिया जाएगा" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "कोई ऐसी समस्या निर्देशिका '%s' नहीं" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "बिना किसी संदेश के केवल समस्या गिनती छापें" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत हालिय समस्याओं को केवल छापें" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ने %u समस्या का पता किया है. अधिक जानकारी के लिए चलाएँ: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' मिटा रहा है" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "रिपोर्टिंग के बाद PROBLEM_DIR हटाएँ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' मिटा रहा है" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "क्रिया: remove(rm), info(i), skip(s):" -@@ -2201,27 +2365,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "क्रिया: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' की रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "ENTER को अगली समस्या के लिए दबाएँ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "बिना --since argumen के, सभी पता किए समस्या पर बार-बार आता है." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "टाइमस्टैंप के बाद पता चली समस्या को केवल दिखाता है" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/hu.po b/po/hu.po -index c0e3d06..bdb34ab 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -12,127 +12,142 @@ - # teknos.ferenc , 2013-2014 - # Zoltan Hoppár , 2011-2013 - # Zoltan Hoppár , 2014 -+# Kardos László , 2015. #zanata - # Szűcs Kornél Géza , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-31 05:23-0500\n" -+"PO-Revision-Date: 2015-12-16 06:53-0500\n" - "Last-Translator: Szűcs Kornél Géza \n" - "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/hu/)\n" - "Language: hu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Hibajelentés" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Alkalmazás összeomlás megtekintés és jelentés" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' tulajdona nem átvehető" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Mappa nem megnyitható írásra: '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Jelzés nem bezárható: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Hoppá!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Jelentés" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Újraindítás" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " -+"automatikusan bejelentésre került." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " -+"bejelentésre kerül, amint lesz internetkapcsolat. " - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Kérjük vegye " -+"fel a kapcsolatot a fejlesztővel, ha szeretné bejelenteni a hibát" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Ha szeretne " -+"segíteni a hiba megoldásában, kérjük küldjön egy hibajelentést." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " -+"A probléma automatikusan bejelentésre került. " - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " -+"A probléma bejelentésre kerül, amint lesz internetkapcsolat." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel. Ha szeretne " -+"segíteni a probléma megoldásában, kérjük küldjön egy hibajelentést." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Jelzés nem megjeleníthető: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "GIO csatorna nem olvasható: %s" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "GIO csatorna kódolása nem beállítása: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "GIO nonblocking módja nem beállítható: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -143,6 +158,17 @@ msgstr "" - "Alkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új " - "probléma történne\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Kérdezzen a mappa kisajátítása előtt" -@@ -164,12 +190,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"A coredump fájl fontos a stack trace generálása érdekében. Mivel ez egy idő- " --"és erőforrás-igényes folyamat, az ABRT ad szolgáltatást ehhez, ami ezt " --"elvégzi, de előtte fel kell tölteni a coredump fájlt. Ezzel az opcióval " --"természetesen az ABRT fel fogja tölteni őket kérdés nélkül." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -217,10 +241,6 @@ msgstr "" - "Rövidített jelentés opció be van kapcsolva." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Kérdezzen a coredump feltöltése előtt" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -228,15 +248,15 @@ msgstr "" - "Ha ez az opció engedélyezve van, akkor az ABRT mindig korlátozott " - "hozzáféréssel jelenti a hibát, ha az bizalmas adatot tartalmaz." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Privát bejegyzés kérése érzékeny információk miatt" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Jelezze a hiányos problémákat" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -246,6 +266,22 @@ msgstr "" - "felhasználó kiléptetése zajlik. Mivel az ABRT célja, hogy hasznos hiba " - "jelentéseket küldjön, így ezeket nem tudjuk elküldeni." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Kilépés" -@@ -271,14 +307,14 @@ msgstr "Rólunk" - msgid "Quit" - msgstr "Kilépés" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -290,11 +326,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Probléma könyvtár" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurációs fájl" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -308,24 +344,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opciók]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Alkalmazza a NUM számot mint kliens UID-t" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Jelentés a rendszernaplóba" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Programnevek hozzáadása a log-hoz" - -@@ -333,62 +370,52 @@ msgstr "Programnevek hozzáadása a log-hoz" - msgid "Unknown error" - msgstr "Ismeretlen hiba" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' nem egy érvényes hibamappa" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' nem érvényes elem név" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' elemek nem módosíthatóak" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' nem egy érvényes hibamappa" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Nincs engedélyezve" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Módosításhoz a probléma nem elérhető" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' elemek nem módosíthatóak" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " - "logfájljait a további részletekért." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' nem érvényes elem név" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' mérete nem megállapítható" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nem maradt hibagyűjtő terület" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "A probléma mappából '%s' nem törölhető '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -398,12 +425,12 @@ msgstr "" - "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " - "ezzel a névvel aktív-e vagy sem.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Kilépés NUM másodperc inaktivitás után" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Ennek a programnak root jogokkal kell futnia." - -@@ -430,18 +457,22 @@ msgstr "Ne automatizálja" - msgid "Log to syslog even with -d" - msgstr "Jelentés a rendszernaplóba akkor is, ha -d opcióval ellátott" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT futtatása a DIR könyvtáron" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Közvetlen kommunikáció a felhasználóval" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -480,73 +511,74 @@ msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat támogatás felhasználónév" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Érvénytelen számú paraméter" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Ismeretlen opcionális érték: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Jelszó:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Jelszó megadása nélkül nem folytatható\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -558,74 +590,74 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Nem egy könyvtár: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Átugrás: '{0}' (perjellel kezdődik)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Átugrás: '{0}' (ponttal kezdődik)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - #, fuzzy - msgid "Skipping: '{0}' (contains ..)" - msgstr "Átugrás: '{0}' (.. tartalmaz)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Átugrás: '{0}' (szóközt tartalmaz)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Átugrás: '{0}' (tabulátort tartalmaz)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - #, fuzzy - msgid "Can't change directory to '{0}'" - msgstr "Sikertelen könyvtár váltás ide: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Ismeretlen fájltípus: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - #, fuzzy - msgid "Can't create working directory in '{0}'" - msgstr "Munkakönyvtár létrehozása sikertelen itt: '{0}' " - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - #, fuzzy - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' nem helyezhető át ide: '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - #, fuzzy - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' nem másolható ide: '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - #, fuzzy - msgid "Verification error on '{0}'" - msgstr "Hitelesítési hiba '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Kicsomagolás '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' könyvtár létrehozása sikertelen" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Kicsomagolás sikertelen '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - #, fuzzy - msgid "'{0}' processed successfully" - msgstr "'{0}' feldolgozása sikeres" -@@ -650,18 +682,26 @@ msgstr "Sikertelen chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Hibagyüjtő mappa törlése sikertelen: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Problémák listája em elérhetőek az abrt-dbus szolgáltatásból: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -709,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s, nyomkövetési értelmezés sikertelen" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Az összeomlás szálja nem található" - -@@ -814,7 +854,7 @@ msgstr "Oops üzenet nem kibontható: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Oops szöveg sikeresen kibontva" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -822,6 +862,38 @@ msgstr "" - "A kernelnapló szerint hardver hiba történt.\n" - "Ez valószínűleg nem egy szoftver hiba.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -941,7 +1013,36 @@ msgstr "Hiányzó debuginfo fájl: {0}" - msgid "All debuginfo files are available" - msgstr "MInden debuginfo fájl elérhető" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -951,7 +1052,7 @@ msgstr "" - "tartalmazhat) Ha a válasza 'Nem', a nyomkövetési adatokat helyben állítjuk " - "elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1186,7 +1287,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Ugyanaz mint a -d DumpLocation, a DumpLocation-t pedig az abrt.conf " -@@ -1198,16 +1300,18 @@ msgstr "Mentse a kivonatolt információkat PROBLÉMA gyüjtőbe" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "A dump könyvtár környezetének olvashatóvá tétele" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Aktiválja a probéma mappa létrehozását 1 másodpercenként" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" - -@@ -1216,9 +1320,13 @@ msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Probléma nem frissíthető: több mint egy oops található" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1237,6 +1345,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1260,11 +1369,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1278,16 +1389,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1295,18 +1409,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1325,14 +1442,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1341,12 +1461,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1356,59 +1522,63 @@ msgstr "" - "\n" - "Bontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Nyomtassa ki az összeomlási adatokat a szabványos kimenetre" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1942,7 +2112,7 @@ msgstr "NSS leállítása sikertelen." - msgid "Sleeping for %d seconds" - msgstr "Kivárás %d másodpercig" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1950,7 +2120,7 @@ msgstr "" - "Kernelhiba történt egy hibás BIOS miatt. Sajnálatos módon, az ilyen " - "problémákat nem tudják a kernel programozók kijavítani." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1958,7 +2128,7 @@ msgstr "" - "Kernelhiba történt és a hardvere nem támogatott, ezért a kernel programozók " - "nem tudják megjavítani ezt a problémát." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1967,24 +2137,24 @@ msgstr "" - "Kernelhiba történt, de a kernele összekeveredett más kóddal (flags: %s). A " - "kernel karbantartói képtelenek analizálni ezeket a jelentéseket." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Tainted állapotú modulok: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Hibaazonosítók listája" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Adjon meg egy bodhi kiszolgáló URL-t" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Adja a meg a kiadást" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1994,20 +2164,20 @@ msgstr "" - "\n" - "Keressen frissítéseket bodhi szervereken" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Frissítések keresése" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ehhez a csomaghoz frissítések nem találhatóak" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "A helyben lévő csomag verziója frissebb mint a frissítésekben levő" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2037,70 +2207,71 @@ msgstr "A nyomtatás során talált oops " - msgid "Delete files with found oopses" - msgstr "Fájlok törlése közben oops történt" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Hibagyűjtő DIR könyvtár eltávolítása" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Elemzi és bejelenti a hibaadatokat a DIR könyvtárban" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Információk nyomtatása DIR könyvtárról" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Írja ki a legutóbbi összeomlások számát" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Tekintse meg az 'abrt-cli PARANCS --help' a további információkért" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Csak a nem jelentett problémákat listázza" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Részletes jelentés megjelenítése" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Csak azoknak az esetek számát jelenítse meg ami frissebb, mintt a " - "meghatározott időbélyeg" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Csak azokat a megadott eseteket jelenítse meg amik régebbiek mint az " - "időbélyeg" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2111,55 +2282,65 @@ msgstr "" - "engedélyezze root jogú felhasználóként a 'abrt-auto-reporting enabled' " - "paranccsal.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opciók] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Szöveg nagyobb, ezért így fog megjelenni rövidített szövegként" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Nincs ilyen problémát tartalmazó könyvtár '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - "Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül " - "történt" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg " - "óta történt" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-" - "cli list %s parancsot\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2168,24 +2349,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ia.po b/po/ia.po -index 8249e12..4eabf14 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: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +29,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Reportar" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +163,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +198,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +259,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +278,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "File de configuration" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +296,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registrar in syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adder nomines de programma in registro" - -@@ -296,60 +322,50 @@ msgstr "Adder nomines de programma in registro" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +373,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +399,22 @@ msgstr "Non lancear como demone" - msgid "Log to syslog even with -d" - msgstr "Registrar in syslog mesmo con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +444,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +523,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +608,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +668,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Error durante le analyse del retraciamento de %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +757,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +903,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1154,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Identic a \"-d locodelinstantaneo\"; le loco del instantaneo es specificate " -@@ -1076,16 +1167,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1094,8 +1187,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1115,6 +1212,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1138,11 +1236,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1156,16 +1256,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1173,18 +1276,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1203,14 +1309,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1219,70 +1328,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1807,63 +1966,63 @@ msgstr "Fallimento de arrestar NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1885,65 +2044,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Monstrar un reporto detaliate" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1951,49 +2111,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2002,24 +2172,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/id.po b/po/id.po -index ec554cf..38f9d34 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/id/)\n" - "Language: id\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,108 +32,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Laporan" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -155,7 +166,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -188,30 +201,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -237,14 +262,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -256,11 +281,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Direktori masalah" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Berkas konfigurasi" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -274,24 +299,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Catat ke syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Menambahkan nama program untuk log" - -@@ -299,60 +325,50 @@ msgstr "Menambahkan nama program untuk log" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -360,12 +376,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -386,18 +402,22 @@ msgstr "Jangan dibuat daemon" - msgid "Log to syslog even with -d" - msgstr "Log ke syslog meskipun dengan -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -427,73 +447,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -505,68 +526,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -590,18 +611,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -642,7 +671,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Parsing backtrace gagal untuk %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -731,12 +760,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -845,14 +906,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1067,7 +1157,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1077,16 +1168,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1095,8 +1188,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1116,6 +1213,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1139,11 +1237,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1157,16 +1257,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1174,18 +1277,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1204,14 +1310,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1220,70 +1329,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1784,63 +1943,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1862,65 +2021,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1928,49 +2088,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1979,24 +2149,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/it.po b/po/it.po -index c4be184..41d3d18 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -21,7 +21,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -31,7 +31,7 @@ msgstr "" - "language/it/)\n" - "Language: it\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -41,102 +41,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Impossibile ottenere la proprietà di '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Impossibile aprire la directory per la scrittura: '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Impossibile chiudere la notifica: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Segnala" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Impossibile mostrare la notifica: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Impossibile eseguire la lettura dal canale gio: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Impossibile impostare la codifica sul canale gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Impossibile abilitare la modalità nonblocking per il canale gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -147,6 +147,17 @@ msgstr "" - "Applet che notifica all'utente il rilevamento di un nuovo problema da parte " - "di ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -167,19 +178,15 @@ msgstr "Notifica abbreviata" - msgid "Silent shortened reporting" - msgstr "Notifica abbreviata silenziosa" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Il file coredump è necessario per la generazione degli stack trace. Questa " --"operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di " --"generare uno stack trace da coredump, e a tal proposito sarà necessario " --"caricare coredump per il suddetto servizio. Con questa opzione disabilitata, " --"ABRT caricherà coredump senza richiederlo all'utente." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -230,29 +237,24 @@ msgstr "" - "problemi riportati. Questa impostazione è effettiva solo se è stata " - "abilitata la Notifica abbreviata." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Chiedi prima di caricare coredump" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Richiedi un ticket privato per le informazioni sensibili" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifica problemi incompleti" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -262,6 +264,22 @@ msgstr "" - "durante l'operazione di logout di un utente. Al fine di fornire notifiche " - "utili, ABRT non permetterà l'invio di questi problemi." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Chiudi" -@@ -287,14 +305,14 @@ msgstr "Informazioni" - msgid "Quit" - msgstr "Esci" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -306,11 +324,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Directory del problema" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "File di configurazione" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -324,24 +342,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opzioni]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilizzare NUM per l'uid del client" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log su syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Aggiungi i nomi dei programmi sul log" - -@@ -349,63 +368,53 @@ msgstr "Aggiungi i nomi dei programmi sul log" - msgid "Unknown error" - msgstr "Errore sconosciuto" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' non è una directory di problema valida" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' non è un nome di elemento valido" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Impossibile modificare l'elemento '%s' " -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' non è una directory di problema valida" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Non Autorizzato" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Impossibile accedere al problema per la modifica" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Impossibile modificare l'elemento '%s' " - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Modifica proprietario della directory fallita. Controllare i log del sistema " - "per maggiori informazioni." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' non è un nome di elemento valido" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Impossibile ottenere la dimensione di '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nessuno spazio del problema rimasto" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -415,12 +424,12 @@ msgstr "" - "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " - "questo nome non siano in esecuzione.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Esci dopo NUM secondi di inattività" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Questo programma deve essere eseguito come root." - -@@ -446,18 +455,22 @@ msgstr "Non rendere demone" - msgid "Log to syslog even with -d" - msgstr "Log su syslog anche con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Esegui EVENT su DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunica direttamente all'utente" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -498,89 +511,90 @@ msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" - msgid "Maximal cache size in MiB. Default is " - msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr " Disabilita l'autenticazione" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nome utente per il Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Password per il Red Hat Support, se non specificata verrà richiesto di " - "inserirne una" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Specificare --username per --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Usare --username o --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Usare --username o --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Usare --anonymous o --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Numero non valido di argomenti" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valore opzione sconosciuto: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Password:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Impossibile continuare senza password\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Auto reporting autenticato con HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Auto reporting autenticato con client SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "auto reporting anonimo" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -602,83 +616,83 @@ msgstr "" - " FILENAME - Nome del file dell'archivio caricato\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Non è una directory: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Saltato: '{0}' (inizia con barra)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Saltato: '{0}' (inizia con un punto)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Saltato: '{0}' (contiene ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Saltato: '{0}' (presenta uno spazio)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Saltato: '{0}' (presenta un tab)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Impossibile modificare la directory su '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipo di file sconosciuto: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Impossibile creare una directory operativa in '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Impossibile spostare '{0}' su '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Impossibile copiare '{0}' su '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Errore di verifica su '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Estrazione '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Impossibile creare la directory '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Impossibile estrarre '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' processato con successo" - -@@ -702,18 +716,26 @@ msgstr "Impossibile ottenere la proprietà '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Cancellazione directory del problema non riuscita: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Impossibile ottenere la lista problemi da abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -762,7 +784,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Fallita analisi del backtrace per %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Thread di crash non trovato" - -@@ -870,7 +892,7 @@ msgstr "Impossibile estrarre il messaggio oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Estratto con successo il testo oops" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -878,6 +900,38 @@ msgstr "" - "Il log del kernel indica che sono stati rilevati errori hardware.\n" - "Questo molto probabilmente non è un errore software.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -994,7 +1048,36 @@ msgstr "File debuginfo mancante: {0}" - msgid "All debuginfo files are available" - msgstr "Tutti i file contenenti le informazioni di debug sono disponibili" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1004,7 +1087,7 @@ msgstr "" - "risponde 'No', uno stack trace sarà generato localmente. (Può scaricare una " - "grande quantità di dati)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1244,7 +1327,8 @@ msgstr "Crea una nuova directory del problema in DIR per ogni oops rilevato" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" - -@@ -1254,16 +1338,18 @@ msgstr "Salva l'informazione estratta in PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Rendi la directory del problema leggibile a tutti" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Aumenta la creazione della directory del problema a 1 per secondo" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" - -@@ -1273,9 +1359,13 @@ msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" - msgid "Failed to compile regex" - msgstr "Impossibile compilare regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Impossibile aggiornare il problema: trovati più di un oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1294,6 +1384,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1317,11 +1408,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1335,16 +1428,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1352,18 +1448,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1382,14 +1481,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1398,12 +1500,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1413,58 +1561,62 @@ msgstr "" - "\n" - "Estrae il crash di Xorg da FILE (o da standard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Stampa i dati trovati relativi al crash sullo standard output" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2002,7 +2154,7 @@ msgstr "Arresto NSS fallito." - msgid "Sleeping for %d seconds" - msgstr "In sospensione per %d secondi" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2011,7 +2163,7 @@ msgstr "" - "Sfortunatamente questi problemi non possono essere risolti dai manutentori " - "del kernel." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2020,7 +2172,7 @@ msgstr "" - "per questo motivo i manutentori del kernel non sono in grado di risolvere " - "questo problema." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2030,24 +2182,24 @@ msgstr "" - "%s). I manutentori del kernel non sono in grado di effettuare diagnosi dei " - "rapporti inquinati." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Moduli corrotti: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista dei bug ids" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Specificare un url di un server bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Specificare una release" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2057,22 +2209,22 @@ msgstr "" - "\n" - "Ricerca aggiornamenti disponibili su un server bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Ricerca di aggiornamenti" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Non sono stati trovati aggiornamenti per questo pacchetto" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La versione locale del pacchetto è più recente rispetto a quella disponibile " - "negli aggiornamenti" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2100,67 +2252,68 @@ msgstr "Stampa gli errori trovati" - msgid "Delete files with found oopses" - msgstr "Cancella file con errori trovati" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' identifica più di una directory del problema" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Elenca i problemi [in DIR]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Rimuovi la directory del problema DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizza e riporta i dati del problema in DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Stampa le informazioni sulla DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Stampa il contatore dei crash recenti" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Elabora problemi multipli" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Elenca solo problemi non riportati" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostra i dettagli della segnalazione" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Elenca solo i problemi più recenti della data specificata" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Elenca solo i problemi più vecchi della data specificata" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2170,55 +2323,65 @@ msgstr "" - "La funzione di auto-reporting è disabilitata. Abilitarla con il comando\n" - "'abrt-auto-reporting enabled' come utente con privilegi root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opzioni] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Directory '%s' del problema non trovata" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Stampa solo il contatore del problema senza nessun messaggio" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Stampa solo i problemi più recenti di un timestamp specificato" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Rimozione '%s'" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Rimuovi PROBLEM_DIR dopo la notifica" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Rimozione '%s'" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Azioni: remove(rm), info(i), skip(s):" -@@ -2229,27 +2392,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Notifica '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Per il problema successivo premere ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Seleziona solo i problemi rilevati dopo il timestamp" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ja.po b/po/ja.po -index de6991a..4a59702 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -16,126 +16,127 @@ - # Tomoyuki KATO , 2012-2013 - # carrotsoft , 2011, 2012 - # Noriko Mizumoto , 2015. #zanata -+# Ooyama Yosiyuki , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-08 11:11-0500\n" --"Last-Translator: Noriko Mizumoto \n" -+"PO-Revision-Date: 2015-08-23 07:49-0400\n" -+"Last-Translator: Ooyama Yosiyuki \n" - "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ja/)\n" - "Language: ja\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "問題の報告" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "アプリケーションクラッシュの表示とレポート" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' の所有権を取得できません" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' を書き込むためのディレクトリを開くことができません" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "通知を閉じることができません: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "おっと!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "報告する" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "再開" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題は自動的に報告されています。" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題はインターネット利用可能時に自動的に報告されます。" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を報告したい場合は、開発者に連絡してください。" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を解決したい場合は、報告を送ってください。" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." --msgstr "" -+msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題は自動的に報告されています。" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." --msgstr "" -+msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題はインターネット利用可能時に自動的に報告されます。" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." --msgstr "" -+msgstr "申し訳ございません、 問題が発生したようです。問題を解決したい場合は、報告を送ってください。" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "通知を表示できません: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio チャネルからの読み込みができません: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio チャネルでエンコーディングを設定できません: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio チャネルのノンブロッキングモードを有効にできません: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -144,6 +145,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "新しい問題が ABRT で検出されるとユーザーに通知するアプレットです\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -161,17 +173,15 @@ msgstr " " - msgid "Silent shortened reporting" - msgstr " " - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump " --"からスタックトレースを生成するサービスを提供しますが、coredump " --"をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -214,29 +224,24 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "このオプションを有効にすると、ABRT は報告された問題の通知を表示しません。短縮形レポーティングが有効な場合にのみ、実行されます。" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump をアップロードする前に尋ねる" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "機密情報のプライベートチケットを要求する" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "完了していない問題を通知する" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -245,6 +250,22 @@ msgstr "" - "コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT " - "はユーザーによるこれらの問題の提出を許可しません。" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "閉じる (_C)" -@@ -270,14 +291,14 @@ msgstr "ABRT について" - msgid "Quit" - msgstr "終了" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -289,11 +310,11 @@ msgstr "" - msgid "Problem directory" - msgstr "問題ディレクトリ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "設定ファイル" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -307,24 +328,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [オプション]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM をクライアントの uid として使用する" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog にログする" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ログにプログラム名を追加する" - -@@ -332,60 +354,50 @@ msgstr "ログにプログラム名を追加する" - msgid "Unknown error" - msgstr "不明なエラーです" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "「%s」は有効な問題ディレクトリではありません" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' は有効なエレメント名ではありません" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' エレメントを修正できません" -+msgid "'%s' is not a valid problem directory" -+msgstr "「%s」は有効な問題ディレクトリではありません" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "権限がありません" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "問題にアクセスして修正できません" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' は有効なエレメント名ではありません" -+msgid "'%s' element can't be modified" -+msgstr "'%s' エレメントを修正できません" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' の容量を取得できません" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "残っている問題領域はありません" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -393,12 +405,12 @@ msgid "" - "is not running.\n" - msgstr "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "休止状態が NUM 秒以上続いた場合は終了します" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "このプログラムは root で実行しなければなりません" - -@@ -421,18 +433,22 @@ msgstr "デーモン化しない" - msgid "Log to syslog even with -d" - msgstr "-d オプションを使用するとログを syslog へ書き込みます" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT を DIR で実行する" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ユーザーと直接通信する" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -470,87 +486,88 @@ msgstr "同時実行ワーカー数。規定値は次のとおりです。" - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "認証をオフにする" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat サポートユーザー名" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL 証明書パスまたは証明書タイプ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password には --username も指定してください" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "--username または --certificate のいずれかを使用します" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "--username または --anonymous のいずれかを使用します" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "--anonymous または --certificate のいずれかを使用します" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "引数の数が無効な数です" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "不明なオプション値です: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "パスワード:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "パスワードを入力しないと先に進めません\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP 認証の自動報告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL クライアント認証の自動報告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonymous 自動報告" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -570,83 +587,83 @@ msgstr "" - " FILENAME - アップロード済みアーカイブファイル名\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ディレクトリではありません: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "スキップ中: '{0}' (スラッシュで開始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "スキップ中: '{0}' (ドットで開始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "スキップ中: '{0}' (.. を含む)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "スキップ中: '{0}' (空白を含む)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "スキップ中: '{0}' (タブを含む)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' にディレクトリを変更できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "不明なファイルタイプ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' に作業ディレクトリを作成できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' を '{1}' に移動できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' を '{1}' にコピーできません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' で確認エラー" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' を解凍中" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ディレクトリを作成できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' を解凍できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' が正常に処理されました" - -@@ -670,21 +687,29 @@ msgstr "'%s の chown ができません: %s" - msgid "Deleting problem directory failed: %s" - msgstr "問題ディレクトリの削除に失敗しました: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus から問題のデータを取り込めません: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus から問題の一覧を取りこめません: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus から問題のデータを取り込めません: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "abrt-dbus でエレメントが存在しているかどうかのテストができません : %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -727,7 +752,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s のバックトレース構文解析に失敗しました" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "クラッシュスレッドは見つかりませんでした" - -@@ -832,13 +857,45 @@ msgstr "ウップスメッセージを抽出できません: '{0}'" - msgid "Oops text extracted successfully" - msgstr "ウップステキストが正常に抽出されました" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\n" - "これはおそらくソフトウェアに関する問題ではないでしょう。\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -952,7 +1009,36 @@ msgstr "debuginfo ファイルがありません: {0}" - msgid "All debuginfo files are available" - msgstr "すべての debuginfo ファイルが利用可能です" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -961,7 +1047,7 @@ msgstr "" - "コアダンプをアップロードしてもよいですか (これには機密情報が含まれている可能性があります) " - "?「いいえ」の場合にはスタックトレースがローカルに生成されます (これにより大量のデータがダウンロードされる可能性があります)。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1029,7 +1115,7 @@ msgstr "uReport はすでに送信されているので、再送信されませ - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "既知のBugzilla バグの CC リストにあなたを追加する" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1194,7 +1280,8 @@ msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定します" - -@@ -1204,16 +1291,18 @@ msgstr "抽出した情報を PROBLEM に保存します" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "問題ディレクトリを誰でも見れるようにします" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "問題のディレクトリの作成を毎秒 1 個に制限" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "検索文字列を標準出力に表示して終了" - -@@ -1223,9 +1312,13 @@ msgstr "検索文字列を標準出力に表示して終了" - msgid "Failed to compile regex" - msgstr "regex のコンパイルに失敗しました" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "問題を更新できません: 複数のウップスが見つかりました" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1244,6 +1337,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1263,15 +1357,17 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "検出されるコアダンプごと DIR 内に新規の問題ディレクトリを作成します" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1285,37 +1381,43 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "systemd-journal を開けません" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "ジャーナルの最後までシークできません" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "systemd-journal cursor '%s' を設定できませんでした" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "ジャーナルデータを読めません" - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1332,14 +1434,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1348,12 +1453,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1362,58 +1513,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "FILE (または標準入力) から Xorg クラッシュを抽出します" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "発見したクラッシュデータを標準出力に表示する" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "検出されるクラッシュごと DIR 内に問題ディレクトリを作成します" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1500,7 +1655,7 @@ msgstr "Retrace サーバーを使用するには '%s' が普通のファイル - msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." --msgstr "" -+msgstr "クラッシュサイズは %s ですが、リトレースサーバーで受け取れるクラッシュサイズは %s か、それ以下のサイズになります。" - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." -@@ -1528,12 +1683,12 @@ msgstr "アップロードするアーカイブを準備中" - msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." --msgstr "" -+msgstr "アーカイブのサイズは %s ですが、リトレースサーバーで受け取れるアーカイブのサイズは %s か、それ以下のサイズになります。" - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "%s をアップロードしようとしています。継続しますか?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" -@@ -1542,7 +1697,7 @@ msgstr "ユーザーにより取り消されました" - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "%s をアップロード中 \n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format -@@ -1927,19 +2082,19 @@ msgstr "NSS のシャットダウンに失敗しました。" - msgid "Sleeping for %d seconds" - msgstr "%d 秒スリープします" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "BIOS が破損しているためカーネル関連の問題が発生しました。残念ながら、このような問題はカーネルのメンテナーでは修正できません。" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "カーネル関連の問題が発生しましたが、お使いのハードウェアはサポートされていないため、カーネルメンテナーは問題の修正ができません。" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1947,24 +2102,24 @@ msgid "" - msgstr "" - "カーネル関連の問題が発生しましたが、カーネル自体が破損しています (フラグ:%s)。破損したレポートの診断はカーネルメンテナーでは行なえません。" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "破損モジュール: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "バグ id の一覧" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "bodhi サーバーの url を指定する" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "リリースを指定する" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1974,20 +2129,20 @@ msgstr "" - "\n" - "bodhi サーバー上で更新を検索します" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "更新の検索中" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "このパッケージ用の更新は見つかりませんでした" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "このパッケージは、利用可能な更新よりローカルバージョンの方が新しいものになります" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2012,67 +2167,68 @@ msgstr "検出した oops を表示" - msgid "Delete files with found oopses" - msgstr "検出した oops を含んでいるファイルを削除" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' が複数の問題ディレクトリを確認しました" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "問題を一覧表示する [in DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "DIR 問題ディレクトリを削除する" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR 内の問題データを分析、 報告する" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR に関する情報を出力する" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "最新のクラッシュ回数を表示する" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "複数の問題を処理する" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "詳細については abrt-cli COMMAND --help を参照してください" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "報告されていない問題のみを表示する" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "詳細報告を表示する" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "指定したタイムスタンプより新しい問題のみを表示します" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "指定したタイムスタンプよりも古い問題のみを表示します" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2082,53 +2238,63 @@ msgstr "" - "自動報告機能は無効になっています。root の特権を持つユーザーで\n" - "'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [オプション] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "これより大きなテキストは要約して表示されます" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "そのような問題ディレクトリ '%s' はありません" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "問題の件数のみを表示し、メッセージは表示しません" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "指定されたタイムスタンプよりも新しい問題のみを表示する" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRT により %u 件の問題が検出されました。次を実行して詳細を確認してください: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' を削除中" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "レポート後に PROBLEM_DIR を削除します" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' を削除中" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" -@@ -2139,27 +2305,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' をレポート中" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "次の問題に移るには、ENTER を押します:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "タイムスタンプ後に検出された問題のみを選択します" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ka.po b/po/ka.po -index 3c168a1..76c2da6 100644 ---- a/po/ka.po -+++ b/po/ka.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ანგარიში" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "კონფიგურაციის ფაილი" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "ჟურნალირება syslog-ში" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "მიუთითეთ bodhi სერვერის url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "მიუთითეთ რელიზი" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "განახლებების მოძებნა" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ამ პაკეტისთვის განახლებები არ არის" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "დეტალური ანგარიშის ჩვენება" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/km.po b/po/km.po -index 3af0d2e..84bb1b1 100644 ---- a/po/km.po -+++ b/po/km.po -@@ -1,220 +1,179 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: -+# Leap Sok , 2015. #zanata - msgid "" - msgstr "" --"Project-Id-Version: ABRT\n" -+"Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2014-10-06 13:44+0200\n" --"PO-Revision-Date: 2014-10-06 11:45+0000\n" --"Last-Translator: Jakub Filak \n" --"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2015-11-01 12:29-0400\n" -+"Last-Translator: Leap Sok \n" -+"Language-Team: Khmer\n" - "Language: km\n" --"Plural-Forms: nplurals=1; plural=0;\n" -+"X-Generator: Zanata 3.8.2\n" -+"Plural-Forms: nplurals=1; plural=0\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 --msgid "Automatic Bug Reporting Tool" --msgstr "" -+msgid "Problem Reporting" -+msgstr "រាយការណ៍អំពីបញ្ហា" - - #: ../src/applet/abrt-applet.desktop.in.h:2 --msgid "ABRT notification applet" --msgstr "" -- --#: ../src/applet/applet.c:129 --msgid "" --"The report which will be sent does not contain any security sensitive data. " --"Therefore it is not necessary to bother you next time and require any " --"further action by you. \n" --msgstr "" -- --#: ../src/applet/applet.c:135 --msgid "Do you want to enable automatically submitted crash reports?" --msgstr "" -+msgid "View and report application crashes" -+msgstr "មើលនិងរាយការណ៍ពីកម្មវិធី​ដែលបានគាំង" - --#: ../src/applet/applet.c:140 --msgid "Do you want to enable automatically submitted anonymous crash reports?" --msgstr "" -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 -+#, c-format -+msgid "Can't take ownership of '%s'" -+msgstr "មិនអាចយកភាពជាម្ចាស់នៃ'%s'" - --#. The NetworkManager DBus service is not available. --#: ../src/applet/applet.c:241 -+#: ../src/applet/applet.c:268 - #, c-format --msgid "Can't connect to NetworkManager over DBus: %s" --msgstr "" -+msgid "Can't open directory for writing '%s'" -+msgstr "​កញ្ចប់ឯកសារមិនអាចអានបាន'%s'" - --#: ../src/applet/applet.c:265 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format --msgid "Can't determine network status via NetworkManager: %s" --msgstr "" -+msgid "Can't close notification: %s" -+msgstr "មិនអាចបិទការជូនដំណឹង:'%s'" - --#: ../src/applet/applet.c:384 --msgid "A problem has been detected" --msgstr "" -+#: ../src/applet/applet.c:598 -+msgid "Oops!" -+msgstr "អូ!" - --#: ../src/applet/applet.c:386 --#, c-format --msgid "A problem in the %s package has been detected" --msgstr "" -+#: ../src/applet/applet.c:616 -+msgid "Report" -+msgstr "របាយការណ៍" - --#: ../src/applet/applet.c:396 --#, c-format --msgid "%s and the diagnostic data has been submitted" --msgstr "" -+#: ../src/applet/applet.c:625 -+msgid "Restart" -+msgstr " ការចាប់ផ្តើមសារឡើងវិញ" - --#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 --#: ../src/plugins/abrt-retrace-client.c:168 -+#: ../src/applet/applet.c:694 - #, c-format --msgid "Can't execute '%s'" -+msgid "" -+"We're sorry, it looks like %s crashed. The problem has been automatically " -+"reported." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" - --#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 -+#: ../src/applet/applet.c:699 - #, c-format --msgid "Can't close notification: %s" --msgstr "" -- --#: ../src/applet/applet.c:675 - msgid "" --"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" --"\n" --"Do you want to continue?" -+"We’re sorry, it looks like %s crashed. The problem will be reported when the " -+"internet is available." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" - --#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 --msgid "Warning" --msgstr "" -- --#: ../src/applet/applet.c:803 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 -+#, c-format - msgid "" --"Notification area applet that notifies users about issues detected by ABRT" --msgstr "" -- --#: ../src/applet/applet.c:819 --msgid "translator-credits" --msgstr "" -- --#: ../src/applet/applet.c:827 --msgid "_Quit" -+"We're sorry, it looks like %s crashed. Please contact the developer if you " -+"want to report the issue." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"សូមទាក់ទងអ្នកបង្កើតកម្មវិធីបើអ្នកចង់រាយការណ៍ពីបញ្ហានេះ។" - --#: ../src/applet/applet.c:829 --msgid "Hide" --msgstr "" -- --#: ../src/applet/applet.c:831 --msgid "_About" --msgstr "" -- --#: ../src/applet/applet.c:899 --msgid "Problem detected" --msgstr "" -- --#: ../src/applet/applet.c:949 --msgid "Ignore forever" --msgstr "" -- --#. Problem has been 'autoreported' and is considered as KNOWN --#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 --msgid "Open" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "The Problem has already been Reported" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "A Known Problem has Occurred" --msgstr "" -- --#. Problem has not yet been 'autoreported' and can be --#. * 'autoreported' on user request. --#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 --msgid "Report" -+#: ../src/applet/applet.c:713 -+#, c-format -+msgid "" -+"We're sorry, it looks like %s crashed. If you'd like to help resolve the " -+"issue, please send a report." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " -+"សូមផ្ញើរបាយការណ៍។" - --#: ../src/applet/applet.c:989 --msgid "A Problem has Occurred" -+#: ../src/applet/applet.c:732 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"has been automatically reported." - msgstr "" -+"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។​​​​​​​​ " -+"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" - --#: ../src/applet/applet.c:1015 --msgid "A Problem has been Reported" -+#: ../src/applet/applet.c:736 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"will be reported when the internet is available." - msgstr "" -+"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។ " -+"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" - --#: ../src/applet/applet.c:1023 --msgid "A New Problem has Occurred" -+#: ../src/applet/applet.c:741 -+msgid "" -+"We're sorry, it looks like a problem occurred. If you'd like to help resolve " -+"the issue, please send a report." - msgstr "" -+"យើងសូមទោស, បញ្ហាដូចជាត្រូវបានកើតឡើង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " -+"សូមផ្ញើរបាយការណ៍។" - --#: ../src/applet/applet.c:1033 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "មិនអាចផ្តល់ការជូនដំណឹង: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "" -+msgstr "មិនអាចអានពីឆានែលgio: '%s'" - --#: ../src/applet/applet.c:1151 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "" -+msgstr "មិនអាចកំណត់ការបម្លែងកូដនៅលើឆានែលgio: '%s'" - --#: ../src/applet/applet.c:1155 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "" -- --#: ../src/applet/applet.c:1189 --#, c-format --msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "មិនអាចបើក nonblocking mode សម្រាប់ឆានែលgio: %s" - --#: ../src/applet/applet.c:1198 --#, c-format --msgid "Can't open directory for writing '%s'" -+#: ../src/applet/applet.c:1186 -+msgid "" -+"& [-v] [DIR]...\n" -+"\n" -+"Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" - --#: ../src/applet/applet.c:1481 --#, c-format -+#: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" --"Failed to open connection to session manager: '%s', notification may " --"reappear on the next login" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." - msgstr "" - --#: ../src/applet/applet.c:1622 --msgid "" --"& [-v] [DIR]...\n" --"\n" --"Applet which notifies user when new problems are detected by ABRT\n" -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "សួរមុនពេលបានយកកញ្ចប់ឯកសារ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "ទទួលផ្ញើ uReport ដោយស្វ័យប្រវត្តិ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "របាយការណ៍សង្ខេបឱ្យខ្លី" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "របាយការណ៍គ្មានសំលេងសង្ខេបខ្លី" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " --"space consuming operation. ABRT provides a service which generates the stack" --" trace from the coredump but you have to upload the coredump to this " --"service. With this option disabled ABRT will upload the coredump without " --"asking." -+"space consuming operation. ABRT provides a service which generates the stack " -+"trace from the coredump but you have to upload the coredump to this service. " -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -228,15 +187,15 @@ msgstr "" - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" - "uReport is short and completely anonymous description of a problem. ABRT " --"uses uReports for fast global duplicate detection. In default configuration" --" uReport is sent at beginning of reporting process. With this option enabled" --" uReports are sent automatically immediately after problem detection." -+"uses uReports for fast global duplicate detection. In default configuration " -+"uReport is sent at beginning of reporting process. With this option enabled " -+"uReports are sent automatically immediately after problem detection." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" --"With this option enabled reporting process started by click on Report button" --" in problem notification bubble will be interrupted after uReport is sent. " -+"With this option enabled reporting process started by click on Report button " -+"in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" - -@@ -247,30 +206,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -296,16 +267,17 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:388 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:400 -+#: ../src/daemon/abrt-action-save-package-data.c:406 -+#: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 --#: ../src/plugins/abrt-action-analyze-c.c:78 -+#: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 - #: ../src/plugins/abrt-action-analyze-xorg.c:84 - #: ../src/plugins/abrt-action-analyze-python.c:47 -@@ -314,123 +286,143 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:401 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 --#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 -+#: ../src/daemon/abrt-action-save-package-data.c:408 -+msgid "Use this directory as RPM root" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:199 -+msgid "& [-v] -d DIR\n" -+"\n" -+"Save container metadata" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:211 -+msgid "Root directory for running container commands" -+msgstr "" -+ -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 --#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 --#: ../src/plugins/abrt-dump-journal-oops.c:302 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 -+#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-oops.c:219 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:123 -+#: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:188 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:223 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 --#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:256 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:461 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:559 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:580 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:595 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:627 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 -+#: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 --#: ../src/daemon/abrtd.c:499 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - --#: ../src/daemon/abrtd.c:451 -+#: ../src/daemon/abrtd.c:389 - msgid "" - "The problem data are incomplete. This usually happens when a problem is " --"detected while computer is shutting down or user is logging out. In order to" --" provide valuable problem reports, ABRT will not allow you to submit this " --"problem. If you have time and want to help the developers in their effort to" --" sort out this problem, please contact them directly." -+"detected while computer is shutting down or user is logging out. In order to " -+"provide valuable problem reports, ABRT will not allow you to submit this " -+"problem. If you have time and want to help the developers in their effort to " -+"sort out this problem, please contact them directly." - msgstr "" - --#: ../src/daemon/abrtd.c:497 -+#: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" - msgstr "" - --#: ../src/daemon/abrtd.c:498 -+#: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -460,20 +452,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:81 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:113 -+#: ../src/daemon/abrt-auto-reporting.c:233 -+msgid "Turns the authentication off" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:234 -+msgid "Red Hat Support user name" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:235 -+msgid "Red Hat Support password, if not given, a prompt for it will be issued" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:236 -+msgid "uReport SSL certificate paths or certificate type" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:252 -+msgid "You also need to specify --username for --password" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:258 -+msgid "You can use either --username or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:264 -+msgid "You can use either --username or --anonymous" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:270 -+msgid "You can use either --anonymous or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:138 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-auto-reporting.c:336 -+msgid "Password:" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:339 -+msgid "Cannot continue without password\n" -+msgstr "" -+ -+#. Print only the part before ':' of a string like "username:password" -+#: ../src/daemon/abrt-auto-reporting.c:380 -+msgid "HTTP Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:382 -+msgid "SSL Client Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:384 -+msgid "anonymous auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -485,68 +531,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -570,16 +616,30 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 -+#, c-format -+msgid "Can't test whether the element exists over abrt-dbus: %s" -+msgstr "" -+ - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" -@@ -606,19 +666,21 @@ msgid "" - "and identifies crash function in problem directory DIR" - msgstr "" - -+#. - #. * The parser failed. Compute the duphash from the executable - #. * instead of a backtrace. - #. * and component only. This is not supposed to happen often. -+#. - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-c.c:67 -+#: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" - "& [-v] -d DIR\n" - "\n" -@@ -691,8 +753,7 @@ msgid "Extracting the oops text from core" - msgstr "" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 --msgid "" --"Can't process {0}:\n" -+msgid "Can't process {0}:\n" - "{1}" - msgstr "" - -@@ -704,12 +765,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -727,6 +820,7 @@ msgstr "" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -+#. - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" -@@ -761,60 +855,99 @@ msgstr "" - msgid "Exiting on user command" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:88 -+#: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format - msgid "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" - " [-e, --exact=PATH[:PATH]...]\n" - "\n" - "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" - "to CACHEDIR, using TMPDIR as temporary staging area.\n" - "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" - "\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" - " -v Be verbose\n" - " -y Noninteractive, assume 'Yes' to all questions\n" - " --ids Default: build_ids\n" --" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -+" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" - " --cache Default: /var/cache/abrt-di\n" - " --size_mb Default: 4096\n" -+" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:169 -+#: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:206 -+#: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:209 -+#: ../src/plugins/abrt-action-install-debuginfo.in:215 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:223 -+#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#, c-format -+msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:228 -+#: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:231 -+#: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -824,7 +957,8 @@ msgstr "" - msgid "" - "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" - "\n" --"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" -+"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " -+"SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" - -@@ -840,38 +974,38 @@ msgstr "" - msgid "Preserve this directory" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:40 -+#: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:51 -+#: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:80 -+#: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:100 -+#: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:128 -+#: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:138 -+#: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:159 -+#: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:164 -+#: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" - msgstr "" -@@ -1005,116 +1139,168 @@ msgstr "" - msgid "Don't run PROG if STRs aren't found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:76 -+#: ../src/plugins/abrt-dump-oops.c:77 - msgid "" - "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-oops.c:303 -+#: ../src/plugins/abrt-dump-oops.c:98 -+#: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" - msgstr "" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users --#: ../src/plugins/abrt-dump-oops.c:101 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#. -+#: ../src/plugins/abrt-dump-oops.c:102 -+#: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:102 --#: ../src/plugins/abrt-dump-journal-oops.c:308 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-oops.c:225 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:104 --#: ../src/plugins/abrt-dump-journal-oops.c:309 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-oops.c:105 -+#: ../src/plugins/abrt-dump-journal-oops.c:226 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:105 --#: ../src/plugins/abrt-dump-journal-oops.c:310 -+#: ../src/plugins/abrt-dump-oops.c:106 -+#: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:126 --#: ../src/plugins/abrt-dump-journal-oops.c:214 -+#: ../src/plugins/abrt-dump-oops.c:127 -+#: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:185 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:43 --msgid "Cannot read journal data." -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - --#. Only notice because this is expected --#: ../src/plugins/abrt-dump-journal-oops.c:125 --#, c-format --msgid "Not restoring journal watch's position: file '%s' does not exist" -+#: ../src/plugins/abrt-dump-journal-core.c:341 -+#: ../src/plugins/abrt-dump-journal-core.c:377 -+msgid "Failed to obtain all required information from journald" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:129 -+#. We don't want to update the counter here. -+#: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format --msgid "Cannot restore journal watch's position form file '%s'" -+msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:135 --#, c-format --msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+#: ../src/plugins/abrt-dump-journal-core.c:407 -+msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:141 --#, c-format -+#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 -+msgid "Failed to initialize systemd-journal watch" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" --"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extract coredumps from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:149 --#, c-format --msgid "Cannot restore journal watch's position: open('%s')" -+#: ../src/plugins/abrt-dump-journal-core.c:478 -+msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:158 --#, c-format --msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 -+msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:170 --#, c-format --msgid "Failed to move the journal to a cursor from file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 -+msgid "Start reading systemd-journal from the end" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:185 --msgid "Cannot save journal watch's position" -+#: ../src/plugins/abrt-dump-journal-core.c:482 -+msgid "Throttle problem directory creation to 1 per INT second" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:483 -+msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 -+msgid "Follow systemd-journal from the last seen position (if available)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 -+msgid "You need to specify either -c CURSOR or -e" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 -+msgid "Cannot open systemd-journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:544 -+msgid "Cannot filter systemd-journal to systemd-coredump data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 -+msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:195 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format --msgid "Cannot save journal watch's position: open('%s')" -+msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:251 --msgid "Failed to initialize systemd-journal watch" -+#: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 -+msgid "Cannot read journal data." - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:272 -+#: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" - "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" - "\n" -@@ -1128,59 +1314,144 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:311 --msgid "Start reading systemd-journal from the CURSOR position" -+#: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 -+msgid "Read journal files from all machines" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:312 --msgid "Start reading systemd-journal from the end" -+#: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 -+msgid "Read all journal files from directory at PATH" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:313 --msgid "Follow systemd-journal from the last seen position (if available)" -+#: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 -+#, c-format -+msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:327 --msgid "You need to specify either -c CURSOR or -e" -+#: ../src/plugins/abrt-dump-journal-oops.c:288 -+msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:356 --msgid "Cannot open systemd-journal" -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 -+#, c-format -+msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:359 --msgid "Cannot filter systemd-journal to kernel data only" -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:362 --msgid "Cannot seek to the end of journal" -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:369 --#, c-format --msgid "Failed to start watch from cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:378 --#, c-format --msgid "Failed to set systemd-journal cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:274 -+msgid "Cannot save journal watch's position" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:284 -+#, c-format -+msgid "Cannot save journal watch's position: open('%s')" -+msgstr "" -+ -+#. Only notice because this is expected -+#: ../src/plugins/abrt-journal.c:302 -+#, c-format -+msgid "Not restoring journal watch's position: file '%s' does not exist" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:304 -+#, c-format -+msgid "Cannot restore journal watch's position form file '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:311 -+#, c-format -+msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:317 -+#, c-format -+msgid "" -+"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:325 -+#, c-format -+msgid "Cannot restore journal watch's position: open('%s')" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:334 -+#, c-format -+msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:346 -+#, c-format -+msgid "Failed to move the journal to a cursor from file '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " -@@ -1189,12 +1460,19 @@ msgstr "" - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -+#. - #: ../src/plugins/abrt-retrace-client.c:103 - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " - msgstr "" - -+#: ../src/plugins/abrt-retrace-client.c:131 -+#: ../src/plugins/abrt-retrace-client.c:168 -+#, c-format -+msgid "Can't execute '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 - #: ../src/plugins/abrt-retrace-client.c:677 -@@ -1211,8 +1489,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:1011 - #: ../src/plugins/abrt-retrace-client.c:1070 - #, c-format --msgid "" --"Unexpected HTTP response from server: %d\n" -+msgid "Unexpected HTTP response from server: %d\n" - "%s" - msgstr "" - -@@ -1281,8 +1558,8 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format - msgid "" --"The size of your archive is %s, but the retrace server only accepts archives" --" smaller or equal to %s." -+"The size of your archive is %s, but the retrace server only accepts archives " -+"smaller or equal to %s." - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:640 -@@ -1343,8 +1620,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format --msgid "" --"Task Id: %s\n" -+msgid "Task Id: %s\n" - "Task Password: %s\n" - msgstr "" - -@@ -1354,8 +1630,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format --msgid "" --"Task Status: %s\n" -+msgid "Task Status: %s\n" - "%s\n" - msgstr "" - -@@ -1471,8 +1746,8 @@ msgstr "" - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" - "Needs to downloads debuginfo packages, which might take significant time, " --"and take up disk space. However, unlike RetraceServer, doesn't send coredump" --" to remote machines." -+"and take up disk space. However, unlike RetraceServer, doesn't send coredump " -+"to remote machines." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 -@@ -1481,11 +1756,11 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" --"Uploads coredump to a server, which generates backtrace and returns it. " --"Pros: no need for debuginfo downloads. Retrace server's database of " --"debuginfos is more complete. Retrace server may generate better backtraces. " --"Cons: coredump you upload contains all the data from the crashed program, " --"including your private data, if any." -+"Uploads coredump to a server, which generates backtrace and returns it. Pros:" -+" no need for debuginfo downloads. Retrace server's database of debuginfos is " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " -+"private data, if any." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 -@@ -1506,9 +1781,9 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" --"Write \"insecure\" to allow insecure connection <a " --"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" --" >(warning)</a>" -+"Write \"insecure\" to allow insecure connection <a href=\"https://" -+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(warning)</a>" - msgstr "" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 -@@ -1596,133 +1871,140 @@ msgstr "" - msgid "Failed to wrap TCP socket by SSL." - msgstr "" - --#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 --#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 -+#: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:223 -+#: ../src/plugins/https-utils.c:220 -+msgid "Failed to enable SSL3." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:222 -+msgid "Failed to enable TLS." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:232 -+#: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:240 -+#: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." - msgstr "" - --#: ../src/plugins/https-utils.c:246 -+#: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." - msgstr "" - --#: ../src/plugins/https-utils.c:250 -+#: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." - msgstr "" - --#: ../src/plugins/https-utils.c:257 -+#: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:266 -+#: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:331 -+#: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:368 -+#: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:397 -+#: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." - msgstr "" - --#: ../src/plugins/https-utils.c:422 -+#: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." - msgstr "" - --#: ../src/plugins/https-utils.c:428 -+#: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." - msgstr "" - --#: ../src/plugins/https-utils.c:443 -+#: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." - msgstr "" - --#: ../src/plugins/oops-utils.c:71 -+#: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:205 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:210 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:225 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:233 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" --"An update exists which might fix your problem. You can install it by " --"running: %s. Do you want to continue with reporting the bug?" -+"An update exists which might fix your problem. You can install it by running:" -+" %s. Do you want to continue with reporting the bug?" - msgstr "" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 -@@ -1740,114 +2022,126 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:91 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:130 --msgid "& list [options] [DIR]..." -+#: ../src/cli/list.c:127 -+msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:139 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:141 ../src/cli/list.c:194 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:142 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:143 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:175 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" --"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" -+"The Autoreporting feature is disabled. Please consider enabling it by " -+"issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:186 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:195 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:215 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:70 --msgid "& status [DIR]..." -+#: ../src/cli/status.c:66 -+msgid "& status" - msgstr "" - --#: ../src/cli/status.c:78 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:79 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:104 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1856,24 +2150,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -@@ -1886,8 +2335,8 @@ msgid "" - "user doesn't want to upload his coredump to anywhere the event performs " - "local analysis. Local analysis is run event if remote analysis fails. Pros: " - "no need for debuginfo downloads. Retrace server's database of debuginfos is " --"more complete. Retrace server may generate better backtraces. Cons: coredump" --" you upload contains all the data from the crashed program, including your " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" - -@@ -1944,8 +2393,8 @@ msgstr "" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" --"Checks if there are .vimrc and .gvimrc in your home directory and saves them" --" as user_vimrc and user_gvimrc, respectively." -+"Checks if there are .vimrc and .gvimrc in your home directory and saves them " -+"as user_vimrc and user_gvimrc, respectively." - msgstr "" - - #: ../src/plugins/post_report.xml.in.h:1 -diff --git a/po/kn.po b/po/kn.po -index c122d05..a202a7f 100644 ---- a/po/kn.po -+++ b/po/kn.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/kn/)\n" - "Language: kn\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -34,103 +34,103 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ವರದಿ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -140,6 +140,17 @@ msgstr "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ಕೋಶವನ್ನು ಕಸಿದುಕೊಳ್ಳುವ ಮೊದಲು ಕೇಳು" -@@ -161,13 +172,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ " --"ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ " --"ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ " --"ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT " --"ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -215,10 +223,6 @@ msgstr "" - "ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ನನ್ನನ್ನು ಕೇಳು" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -226,15 +230,15 @@ msgstr "" - "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ " - "ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಗಾಗಿ ಖಾಸಗಿ ಟಿಕೆಟ್‌ಗಾಗಿನ ಮನವಿ" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಳನ್ನು ಸೂಚಿಸು" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -244,6 +248,22 @@ msgstr "" - "ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ " - "ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "ಮುಚ್ಚು (_C)" -@@ -269,14 +289,14 @@ msgstr "ಕುರಿತು" - msgid "Quit" - msgstr "ನಿರ್ಗಮಿಸು" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -288,11 +308,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ತೊಂದರೆಯ ಕೋಶ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ಸಂರಚನಾ ಕಡತ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -306,24 +326,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ಆಯ್ಕೆಗಳು]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ಗೆ ದಾಖಲಿಸು" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು ದಾಖಲೆಗೆ ಸೇರಿಸು" - -@@ -331,62 +352,52 @@ msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು - msgid "Unknown error" - msgstr "ಗೊತ್ತಿರದ ದೋಷ" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ಅಧಿಕಾರವಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ಮಾರ್ಪಡಿಸುವ ಸಲುವಾಗಿ ತೊಂದರೆಯನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ " - "ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ಗಾತ್ರವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ಯಾವುದೆ ತೊಂದರೆ ಸ್ಥಳವು ಉಳಿದಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿಂದ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -396,12 +407,12 @@ msgstr "" - "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು " - "ಪರೀಕ್ಷಿಸಿ.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM ಸೆಕೆಂಡುಗಳ ನಿಷ್ಕ್ರಿಯತೆಯ ನಂತರ ನಿರ್ಗಮಿಸು" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸಬೇಕು." - -@@ -427,18 +438,22 @@ msgstr "ಡೆಮನ್‌ ಆಗಿ ಮಾಡಬೇಡ" - msgid "Log to syslog even with -d" - msgstr "-d ಯೊಂದಿಗೂ ಸಹ syslog ಗೆ ದಾಖಲಿಸಿ" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR ನಲ್ಲಿ EVENT ಅನ್ನು ಚಲಾಯಿಸಿ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ಬಳಕೆದಾರರೊಂದಿಗೆ ನೇರವಾಗಿ ವ್ಯವಹರಿಸು" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -479,89 +494,90 @@ msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂ - msgid "Maximal cache size in MiB. Default is " - msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ದೃಢೀಕರಣವನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat ಸಪೋರ್ಟ್‌ನ ಬಳಕೆದಾರ ಹೆಸರು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat ಸಪೋರ್ಟ್‌ಗಾಗಿನ ಗುಪ್ತಪದ, ನೀಡಲಾಗಿರದೆ ಇದ್ದರೆ, ಒಂದು ಪ್ರಾಂಪ್ಟ್ ಅನ್ನು " - "ನೀಡಲಾಗುತ್ತದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL ಪ್ರಮಾಣಪತ್ರದ ಮಾರ್ಗಗಳು ಅಥವ ಪ್ರಮಾಣಪತ್ರದ ಬಗೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password ಕ್ಕಾಗಿ ನೀವು --username ಅನ್ನೂ ಸಹ ಒದಗಿಸಬೇಕು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "ನೀವು --username ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "ನೀವು --username ಮತ್ತು --anonymous ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "ನೀವು --anonymous ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "ಗುಪ್ತಪದ:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "ಗುಪ್ತಪದವಿಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ಯು ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL ಕ್ಲೈಂಟ್‌ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "ಅನಾಮಧೇಯವಾಗಿ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -582,83 +598,83 @@ msgstr "" - " FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ಒಂದು ಕೋಶವಲ್ಲ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಚುಕ್ಕಿಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (.. ಅನ್ನು ಹೊಂದಿದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಖಾಲಿಸ್ಥಳವನ್ನು ಹೊಂದಿದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಟ್ಯಾಬ್ ಅನ್ನು ಹೊಂದಿದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ಕೋಶವನ್ನು '{0}' ಗೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "ಗೊತ್ತಿರದ ಕಡತದ ಬಗೆ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' ನಲ್ಲಿ ಕೆಲಸ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಸ್ಥಳಾಂತರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಪ್ರತಿಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' ನಲ್ಲಿ ಪರಿಶೀಲನಾ ದೋಷ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' ಅನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ನಲ್ಲಿ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ಅನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸಂಸ್ಕರಿಸಲಾಗಿದೆ" - -@@ -682,18 +698,26 @@ msgstr "'%s' ಅನ್ನು chown ಮಾಡಲಾಗಿಲ್ಲ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ತೊಂದರೆಯ ಕೋಶವನ್ನು ಅಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -742,7 +766,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s ಗಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಪಾರ್ಸಿಂಗ್ ವಿಫಲಗೊಂಡಿದೆ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ಕುಸಿತದ ಎಳೆಯು (ತ್ರೆಡ್‌) ಕಂಡುಬಂದಿಲ್ಲ" - -@@ -850,7 +874,7 @@ msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ - msgid "Oops text extracted successfully" - msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -858,6 +882,38 @@ msgstr "" - "ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\n" - "ಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -975,7 +1031,36 @@ msgstr "debuginfo ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" - msgid "All debuginfo files are available" - msgstr "debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -985,7 +1070,7 @@ msgstr "" - "ನಿಮ್ಮ ಉತ್ತರವು 'ಇಲ್ಲ' ಆಗಿದ್ದಲ್ಲಿ, ಸ್ಥಳೀಯವಾಗಿ ಒಂದು ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್‌ ಅನ್ನು " - "ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. (ಇದು ದೊಡ್ಡ ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1227,7 +1312,8 @@ msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" -@@ -1238,16 +1324,18 @@ msgstr "ಹೊರತೆಗೆಯಲಾದ ಮಾಹಿತಿಯನ್ನು PROB - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ದೋಷದ ಕೋಶವನ್ನು ಜಗತ್ತು ಓದುವ ರೀತಿಯಲ್ಲಿ ಮಾಡಿ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ 1 ಇರುವಂತೆ ಹತೋಟಿಯಲ್ಲಿಡು" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" - -@@ -1257,10 +1345,13 @@ msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ - msgid "Failed to compile regex" - msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗೊಂಡಿದೆ" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1279,6 +1370,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1302,11 +1394,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1320,16 +1414,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1337,18 +1434,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1367,14 +1467,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1383,12 +1486,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1398,58 +1547,62 @@ msgstr "" - "\n" - "Xorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "ಕಂಡು ಬಂದ ಕುಸಿತದ ದತ್ತಾಂಶವನ್ನು ಶಿಷ್ಟವಾದ ಔಟ್‌ಪುಟ್‌ಗೆ ಮುದ್ರಿಸು" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಕುಸಿತ ಕೋಶವನ್ನು ರಚಿಸು" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1991,7 +2144,7 @@ msgstr "NSS ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲು ವಿಫಲ - msgid "Sleeping for %d seconds" - msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1999,7 +2152,7 @@ msgstr "" - "ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, " - "ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2007,7 +2160,7 @@ msgstr "" - "ಕರ್ನಲ್ ತೊಂದರೆ ಉಂಟಾಗಿದೆ, ಆದರೆ ನಿಮ್ಮ ಯಂತ್ರಾಂಶವು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಆ " - "ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2016,24 +2169,24 @@ msgstr "" - "ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಎದುರಾಗಿದೆ, ಆದರೆ ಕರ್ನಲ್‌ಗೆ ಸೋಂಕು ಹಿಡಿದಿದೆ (flags:%s). " - "ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " ಪರವಾನಗಿ ಸರಿ ಇರದ ಮಾಡ್ಯೂಲ್‌ಗಳು: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ದೋಷದ idಗಳ ಪಟ್ಟಿ" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ಒಂದು ಬೋಧಿ ಪೂರೈಕೆಗಣಕ url ಅನ್ನು ಸೂಚಿಸಿ" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ಒಂದು ಬಿಡುಗಡೆಯನ್ನು ಸೂಚಿಸಿ" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2043,22 +2196,22 @@ msgstr "" - "\n" - "ಬೋಧಿ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ಈ ಪ್ಯಾಕೇಜಿಗೆ ಯಾವುದೆ ಅಪ್‌ಡೇಟ್‌ಗಳಿಲ್ಲ" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "ಪ್ಯಾಕೇಜಿನ ಸ್ಥಳೀಯ ಆವೃತ್ತಿಯು ಲಭ್ಯವಿರುವ ಅಪ್‌ಡೇಟ್‌ನ ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗಿಂತ " - "ಹೊಸತಾಗಿದೆ" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2087,69 +2240,70 @@ msgstr "ಕಂಡುಬಂದ oopses ಅನ್ನು ಮುದ್ರಿಸು" - msgid "Delete files with found oopses" - msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು ಅಳಿಸು" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "ತೊಂದರೆಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು [DIR ಗಳಲ್ಲಿ]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "ತೊಂದರೆಯ ಕೋಶ DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "ತೊಂದರೆಯ ಮಾಹಿತಿಯನ್ನು DIR ನಲ್ಲಿ ವಿಶ್ಲೇಷಿಸು ಹಾಗು ವರದಿ ಮಾಡು" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸು" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯನ್ನು ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿಸಿ" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "ವರದಿ-ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ " - "ತೋರಿಸು" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2160,57 +2314,67 @@ msgstr "" - "ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\n" - "ಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ಇದಕ್ಕಿಂತ ದೊಡ್ಡದಾದ ಪಠ್ಯವನ್ನು ಸಂಕ್ಷೇಪವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "ಅಂತಹ ಯಾವುದೆ ತೊಂದರೆ ಕೋಶ'%s' ಇಲ್ಲ" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "ಯಾವುದೆ ಸಂದೇಶವಿಲ್ಲದೆ ಕೇವಲ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ ಮುದ್ರಿಸು" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ " - "ಮುದ್ರಿಸು" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದೆ. (ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಇದನ್ನು ಚಲಾಯಿಸಿ: abrt-" - "cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "ಮತ್ತು ವರದಿ [ಆಯ್ಕೆಗಳು] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "ವರದಿ ಮಾಡಿದ ನಂತರ PROBLEM_DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" -@@ -2221,28 +2385,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' ಅನ್ನು ವರದಿ ಮಾಡಲಾಗುತ್ತಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು ಒತ್ತಿ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ ಸಮಸ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಆರಿಸು" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ko.po b/po/ko.po -index 340ca29..ab62425 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -9,126 +9,127 @@ - # Jiří Moskovčák , 2011 - # , 2011-2012 - # , 2011-2012, 2013 -+# MinWoo Joh , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-07-30 11:38-0400\n" -+"Last-Translator: MinWoo Joh \n" - "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ko/)\n" - "Language: ko\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "문제 보고" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "애플리케이션 충돌을 확인 및 보고합니다" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s'의 소유 권한을 갖을 수 없음 " - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "통지를 종료할 수 없음: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "보고 " - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "재시작" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 문제는 자동으로 보고됩니다." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 문제를 보고하려면 개발자에게 문의하십시오." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." --msgstr "" -+msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 문제는 자동으로 보고되었습니다." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." --msgstr "" -+msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." --msgstr "" -+msgstr "죄송합니다. 문제가 발생했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "통지를 표시할 수 없음: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio 채널에서 읽을 수 없음: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +138,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "ABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -157,17 +169,15 @@ msgstr "단축형 보고서 " - msgid "Silent shortened reporting" - msgstr "자동 단축형 보고서 " - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 " --"서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다." --" " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -208,29 +218,24 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "이 옵션을 사용하면 ABRT는 보고된 문제에 대해 알림을 표시하지 않습니다. 단축형 보고가 유효한 경우에만 실행됩니다. " - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump를 업로드하기 전 묻습니다 " -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." --msgstr "" -+msgstr "이 옵션이 적용되면 ABRT는 민감한 데이터가 감지되었을 경우 항상 엑세스가 제한된 버크 티켓을 생성합니다." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "민감한 정보에 대해 비공개 티켓을 요청합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "완료하지 않은 문제를 알려줍니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -239,6 +244,22 @@ msgstr "" - "컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 " - "문제에 대해 보고 허용하지 않습니다." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -270,14 +291,17 @@ msgstr "ABRT에 대해 " - msgid "Quit" - msgstr "종료 " - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"패키지 데이터베이스를 쿼리하고 패키지 및 구성요소의 이름을 저장합니다." - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -289,42 +313,45 @@ msgstr "" - msgid "Problem directory" - msgstr "문제가 있는 디렉토리 " - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "설정 파일 " - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "이 디렉토리를 RPM Root로 사용합니다." - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"저장소의 메타데이터를 저장합니다." - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "저장소 명령을 실행하기 위한 루트 디렉토리" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM을 클라이언트 uid로 사용 " - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog에 로그 " - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "로그에 프로그램 이름 추가 " - -@@ -332,60 +359,50 @@ msgstr "로그에 프로그램 이름 추가 " - msgid "Unknown error" - msgstr "알 수 없는 오류" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" -+msgid "'%s' is not a valid element name" -+msgstr "'%s'은 유효한 요소 이름이 아닙니다 " - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' 요소를 수정할 수 없습니다 " -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "권한이 없습니다 " - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "수정하기 위해 문제에 액세스할 수 없습니다 " -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s'은 유효한 요소 이름이 아닙니다 " -+msgid "'%s' element can't be modified" -+msgstr "'%s' 요소를 수정할 수 없습니다 " -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' 용량을 얻을 수 없습니다 " - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "남은 문제 공간이 없음 " - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -393,12 +410,12 @@ msgid "" - "is not running.\n" - msgstr "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "이 프로그램은 root로 실행해야 합니다." - -@@ -423,18 +440,22 @@ msgstr "데몬화하지 않습니다 " - msgid "Log to syslog even with -d" - msgstr "-d를 사용하여 syslog에 로그 " - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR에서 EVENT 실행 " - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "사용자에게 직접 통신 " - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -478,76 +499,77 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "인증을 해제합니다." - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat Support 사용자 이름" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" --msgstr "" -+msgstr "Red Hat Support 암호, 지정하지 않은 경우, 이를 요청하는 메세지가 나타납니다." - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "uReport SSL 인증서 경로 또는 인증서 유형" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "--password에 대한 --username을 지정하십시오." - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "--username 또는 --certificate 중 하나를 사용할 수 있습니다." - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "--username 또는 --anonymous 중 하나를 사용할 수 있습니다" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "--anonymous 또는 --certificate 중 하나를 사용할 수 있습니다" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "잘못된 인수 개수 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "알 수 없는 옵션 값: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "암호:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "암호없이 계속 진행할 수 없습니다\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "HTTP 인증 자동 보고" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "SSL 클라이언트 인증 자동 보고" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "익명으로 자동 보고" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -567,83 +589,83 @@ msgstr "" - " FILENAME - 업로드된 아카이브 파일 이름 \n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "디렉토리가 아닙니다: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "생략 중: '{0}' (슬래시로 시작)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "생략 중: '{0}' (점으로 시작)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "생략 중: '{0}' (.. 포함)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "생략 중: '{0}' (공백 포함)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "생략 중: '{0}' (탭 포함)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}'로 디렉토리를 변경할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "알 수 없는 파일 형식: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}'에 작업 디렉토리를 생성할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}'을 '{1}'로 이동할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}'을 '{1}'에 복사할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}'에서 확인 오류 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' 압축 해제 중 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' 디렉토리를 생성할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}'을 압축 해제할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}'이 성공적으로 처리되었습니다 " - -@@ -667,21 +689,29 @@ msgstr "'%s'의 chown할 수 없음: %s" - msgid "Deleting problem directory failed: %s" - msgstr "문제 디렉토리 삭제 실패: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr " abrt-dbus에서 요소가 존재하는지 여부를 검증할 수 없습니다: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -724,7 +754,7 @@ msgid "Backtrace parsing failed for %s" - msgstr "%s 용 백트레이스 구문 분석 실패 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "충돌 스레드를 찾을 수 없습니다 " - -@@ -830,13 +860,45 @@ msgid "Oops text extracted successfully" - msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n" - "이는 소프트웨어 문제는 아닌것 같습니다.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -923,6 +985,28 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"사용법: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" \n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"TMPDIR을 임시 준비 영역으로 사용하여 CASHEDIR에 BUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 " -+"설치합니다. \n" -+"CACHEDIR에 있는 오래된 파일은 SIZE보다 작게될 때 까지 삭제됩니다.\n" -+"\n" -+"/etc/abrt/plugins/CCpp.conf 로부터 설정을 읽어들입니다.\n" -+"\n" -+" -v 대화식으로 실행합니다.\n" -+" -y 비 대화식으로, 모든 옵션에 대해 '예'라고 가정합니다.\n" -+" --ids 기본ID: build_id들\n" -+" --tmpdir 기본위치: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -+" --cache 기본위치: /var/cache/abrt-di\n" -+" --size_mb 기본크기: 4096\n" -+" --pkgmgr 기본: PackageManager from CCpp.conf or 'dnf'\n" -+" -e,--exact 지정된 파일만 다운로드 합니다.\n" -+" --repo 리포지터리 검색시 사용할 규칙\n" -+" 기본: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -940,7 +1024,7 @@ msgstr "{0} debuginfo 파일이 설치되어 있지 않습니다 " - #: ../src/plugins/abrt-action-install-debuginfo.in:234 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" --msgstr "" -+msgstr "CCpp 애드온의 잘못된 설정, 지원되지 않는 패키지 관리자 : '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-install-debuginfo.in:249 -@@ -955,7 +1039,36 @@ msgstr "debuginfo 파일이 누락되어 있습니다: {0}" - msgid "All debuginfo files are available" - msgstr "모든 debuginfo 파일이 사용 가능합니다" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -964,7 +1077,7 @@ msgstr "" - "코어 덤프를 업로드해도 되겠습니까? (민감한 데이터가 포함되어 있을 수 있습니다). '아니요'로 대답할 경우 스택 추적이 로컬에 " - "생성됩니다. (이는 거대한 용량의 데이터를 다운로드할 수 있습니다)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1032,7 +1145,7 @@ msgstr "uReport가 이미 전송되어 있기때문에 다시 전송되지 않 - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "존재하는 Bugzilla bug 의 CC목록에 추가합니다. " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1226,7 +1339,8 @@ msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " - -@@ -1237,17 +1351,19 @@ msgstr "추출한 정보를 PROBLEM에 저장합니다 " - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " - -@@ -1257,15 +1373,18 @@ msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " - msgid "Failed to compile regex" - msgstr "regex 컴파일에 실패했습니다 " - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "journald로부터 필요한 모든 정보를 얻는데 실패했습니다." - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 -@@ -1275,10 +1394,11 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "abrt 데이터베이스에 문제 감지 데이터를 저장하는데에 실패했습니다." - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1298,59 +1418,67 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "모든 코어덤프에 대해 DIR에 새로운 문제 디렉토리를 생성" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "CURSOR의 위치에서 systemd-journal을 읽기 시작" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "뒤에서 부터 systemd-journal을 읽기 시작 " - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "-t INT와 같이, INT는 plugins/CCpp.conf에 정의되어 있습니다." - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "-c CURSOR 또는 -e 중 하나를 지정해야 합니다." - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "systemd-journal을 열 수 없습니다." - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "저널 데이터를 읽을 수 없습니다." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1367,14 +1495,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1383,12 +1514,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1397,58 +1574,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "검색된 크래시 데이터를 표준 출력에 인쇄 " - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "발견된 모든 크래시에 대해 DIR에 문제 디렉토리를 생성" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1968,44 +2149,44 @@ msgid "Sleeping for %d seconds" - msgstr "%d 초 동안 절전 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "BIOS 손상으로 인해 커널 관련 문제가 발생했습니다. 불행히도 이러한 문제는 커널 관리자에 의해 수정될 수 없습니다." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "커널 관련 문제가 발생했지만 해당 하드웨어가 지원되지 않기 때문에 커널 관리자는 이 문제를 수정할 수 없습니다." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "커널에 문제가 발생했지만 커널 자체가 손상되어 있습니다 (플래그: %s). 커널 관리자는 손상된 보고를 진단할 수 없습니다." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "잘못된 모듈: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "버그 ID 목록" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "bodhi 서버 url 지정" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "릴리즈 지정" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2015,20 +2196,20 @@ msgstr "" - "\n" - "bodhi 서버에서 업데이트 검색" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "업데이트 검색 중" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "이 패키지에 대한 업데이트를 찾을 수 없음" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "패키지의 로컬 버전은 사용 가능한 업데이트 보다 새로운 버전입니다" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2058,72 +2239,73 @@ msgid "Delete files with found oopses" - msgstr "검색된 oopses가 있는 파일을 삭제합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr " [in DIRs]에 문제 나열 " - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "문제 디렉토리 DIR 제거 " - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR에 문제가 있는 데이터를 분석 및 보고 " - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR에 관한 정보 출력 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "최근 충돌 횟수를 출력" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "여러 문제 처리 " - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "보고되지 않는 문제만 나열합니다 " - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "상세 보고를 표시합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2133,59 +2315,69 @@ msgstr "" - "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" - "'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "이러한 문제 디렉토리 '%s'가 없음 " - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 실행하여 보다 자세한 내용을 확인합니다: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' 삭제 중 " -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "보고 후 PROBLEM_DIR 삭제 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' 삭제 중 " -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "동작: 삭제(rm), 정보(i), 생략(s):" -@@ -2196,27 +2388,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' 보고 중 " - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/lt.po b/po/lt.po -index 09c6e2b..caf1761 100644 ---- a/po/lt.po -+++ b/po/lt.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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: lt\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "(n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,102 +31,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Nepavyko tapti „%s“ savininku" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Nepavyksta atverti katalogo rašymui „%s“" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nepavyksta užverti pranešimo: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Pranešti" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nepavyksta parodyti pranešimo: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Nepavyksta skaityti iš gio kanalo: „%s“" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nepavyksta nustatyti gio kanalo koduotės: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nepavyksta įjungti neblokuojančios veiksenos gio kanalui: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -136,6 +136,17 @@ msgstr "" - "\n" - "Įtaisas, kuris praneša naudotojui, kai ABRT aptinka naują problemą\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -157,7 +168,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -190,30 +203,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -239,14 +264,14 @@ msgstr "Apie" - msgid "Quit" - msgstr "Išeiti" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -258,11 +283,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemų katalogas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigūracijos failas" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -276,24 +301,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [parinktys]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Naudoti NUM kaip kliento uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Įrašyti į syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Pridėti programų pavadinimus žurnalizavimui" - -@@ -301,62 +327,52 @@ msgstr "Pridėti programų pavadinimus žurnalizavimui" - msgid "Unknown error" - msgstr "Nežinoma klaida" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "„%s“ nėra tinkamas problemų katalogas" -+msgid "'%s' is not a valid element name" -+msgstr "„%s“ nėra tinkamas elemento pavadinimas" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "„%s“ elementas negali būti pakeistas" -+msgid "'%s' is not a valid problem directory" -+msgstr "„%s“ nėra tinkamas problemų katalogas" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Neleista" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nepavyksta prieiti problemos pakeitimui" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "„%s“ elementas negali būti pakeistas" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos " - "žurnaluose." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "„%s“ nėra tinkamas elemento pavadinimas" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Nepavyko gauti „%s“ dydžio" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nėra likusios problemų vietos" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -366,12 +382,12 @@ msgstr "" - "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo " - "vardu.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Išeiti po NUM sekundžių neaktyvumo" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Šią programą reikia paleisti root naudotojo teisėmis." - -@@ -397,18 +413,22 @@ msgstr "Nedemonizuoti" - msgid "Log to syslog even with -d" - msgstr "Įrašyti į syslog net su -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ĮVYKIO KAT..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Vykdyti ĮVYKĮ KAT" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikuoti tiesiogiai su naudotoju" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -446,73 +466,74 @@ msgstr "Darbininkų skaičius. Numatyta " - msgid "Maximal cache size in MiB. Default is " - msgstr "Didžiausias podėlio dydis MiB. Numatyta " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Neteisingas argumentų skaičius" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Nežinoma parametro vertė: „%s“\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -524,68 +545,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -609,18 +630,26 @@ msgstr "Nepavyko chown „%s“: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Nepavyko ištrinti problemos katalogo: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nepavyko gauti problemų sąrašo iš abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -667,7 +696,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Nepavyko perskaityti %s pėdsako" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Lūžimo gija nerasta" - -@@ -769,12 +798,44 @@ msgstr "Nepavyksta išgauti oops pranešimo: „{0}“" - msgid "Oops text extracted successfully" - msgstr "Oops tekstas sėkmingai išgautas" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -892,7 +953,36 @@ msgstr "Trūksta derinimo informacijos failo: {0}" - msgid "All debuginfo files are available" - msgstr "Yra visi derinimo informacijos failai" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -902,7 +992,7 @@ msgstr "" - "atsakysite „Ne“, steko pėdsakas bus generuojamas vietoje. (Tai gali " - "parsiųsti daug duomenų)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1133,7 +1223,8 @@ msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Tas pats kaip -d DumpLocation, DumpLocation yra nurodyta abrt.conf" - -@@ -1143,16 +1234,18 @@ msgstr "Įrašyti išgautą informaciją į PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Padaryti problemų katalogą skaitomą pasauliui" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti" - -@@ -1161,9 +1254,13 @@ msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Nepavyksta atnaujinti problemos: rastas daugiau nei vienas oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1182,6 +1279,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1205,11 +1303,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1223,16 +1323,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1240,18 +1343,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1270,14 +1376,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1286,12 +1395,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1301,59 +1456,63 @@ msgstr "" - "\n" - "Išgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Atspausdinti rastus lūžimo duomenis standartinėje išvestyje" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1886,7 +2045,7 @@ msgstr "Nepavyko išjungti NSS." - msgid "Sleeping for %d seconds" - msgstr "Miegama %d sekundžių" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1894,7 +2053,7 @@ msgstr "" - "Dėl blogo BIOS kilo branduolio problema. Deja, tokių problemų branduolio " - "prižiūrėtojai negali pataisyti." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1902,7 +2061,7 @@ msgstr "" - "Kilo branduolio problema, bet jūsų aparatinė įranga yra nepalaikoma, tad " - "branduolio prižiūrėtojai negali pataisyti šios problemos." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1911,24 +2070,24 @@ msgstr "" - "Kilo branduolio problema, bet jūsų branduolys buvo pakeistas (požymiai:%s). " - "Branduolio prižiūrėtojai negali diagnozuoti pakeistų pranešimų." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Sugadinti moduliai: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Klaidų id sąrašas" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Nurodykite bohdi serverio url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Nurodykite leidimą" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1939,20 +2098,20 @@ msgstr "" - "\n" - "Ieškoti atnaujinimų bodhi serveryje" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Ieškoma atnaujinimų" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nerasta šio paketo atnaujinimų" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Vietinė paketo versija yra naujesnė nei prieinama atnaujinimuose" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1980,65 +2139,66 @@ msgstr "Atspausdinti rastus oops" - msgid "Delete files with found oopses" - msgstr "Ištrinti failus su rastais oops" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "„%s“ nurodo daugiau nei vieną problemos aplanką" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Naudojimas: abrt-cli [--version] KOMANDA [KAT]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Pašalinti problemos katalogą KAT" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizuoti ir pranešti KAT problemos duomenis" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Atspausdinti informaciją apie KAT" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Atspausdinti nesenų lūžimų skaičių" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Išvardinti tik nepraneštas problemas" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Rodyti detalią ataskaitą" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Išvardinti tik problemas, kurios naujesnės nei nurodyta laiko žyma" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2049,51 +2209,61 @@ msgstr "" - "teisėmis\n" - "„abrt-auto-reporting enabled“\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [parinktys] KAT..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Ilgesnis nei toks tekstas bus rodomas sutrumpintas" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Nėra tokio problemos aplanko „%s“" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Atspausdinti tik problemų skaičių be jokių pranešimų" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2102,24 +2272,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/lv.po b/po/lv.po -index 2c4a453..fd0d22d 100644 ---- a/po/lv.po -+++ b/po/lv.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +29,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nevar aizvērt paziņojumu: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Ziņot" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +163,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +198,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +259,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +278,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurācijas datne" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +296,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [iespējas]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -296,60 +322,50 @@ msgstr "" - msgid "Unknown error" - msgstr "Nezināma kļūda" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' nav derīgs elementa nosaukums" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' nav derīgs elementa nosaukums" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +373,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +399,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +444,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +523,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +608,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +668,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +757,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +903,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1154,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1074,16 +1165,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1092,8 +1185,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1113,6 +1210,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1136,11 +1234,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1154,16 +1254,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1171,18 +1274,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1201,14 +1307,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1217,70 +1326,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1778,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Šai pakotnei netika atrasts neviens atjauninājums." - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Parādīt detalizētu ziņojumu" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ml.po b/po/ml.po -index 2508892..19da90a 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -10,122 +10,127 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-08 10:57-0500\n" -+"PO-Revision-Date: 2015-09-25 05:50-0400\n" - "Last-Translator: Ani Peter \n" - "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ml/)\n" - "Language: ml\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 -+#, fuzzy - msgid "Problem Reporting" --msgstr "" -+msgstr "പ്രശ്നം രേഖപ്പെടുത്തുന്ന ക്രമീകരണം" - -+# auto translated by TM merge from project: gnome-abrt, version: master, DocId: gnome-abrt - #: ../src/applet/abrt-applet.desktop.in.h:2 -+#, fuzzy - msgid "View and report application crashes" --msgstr "" -+msgstr "പ്രയോഗത്തിന്റെ തകരാറുകള്‍ രേഖപ്പെടുത്തുക" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "റിപോര്‍ട്ട്" - --#: ../src/applet/applet.c:523 -+# auto translated by TM merge from project: ibus, version: head, DocId: ibus10 -+#: ../src/applet/applet.c:625 -+#, fuzzy - msgid "Restart" --msgstr "" -+msgstr "വീണ്ടും ആരംഭിക്കുക" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "അറിയിപ്പു് കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ചാനലില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ചാനലില്‍ എന്‍കോഡിങ് സജ്ജമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ചെയ്യുവാാന്‍ സാധ്യമല്ല: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -136,6 +141,17 @@ msgstr "" - "പുതിയ പ്രശ്നങ്ങള്‍ ABRT കണ്ടുപിടിയ്ക്കുമ്പോള്‍ ഉപയോക്താവിനെ " - "അറിയിയ്ക്കുന്നതിനുള്ള ആപ്ലെറ്റ്\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -156,19 +172,15 @@ msgstr "ചെറിയ രീതിയിലുള്ള റിപോര്‍ - msgid "Silent shortened reporting" - msgstr "നിശബ്ദമായ ചെറിയ റിപോര്‍ട്ടിങ്" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് " --"അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് " --"ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ " --"കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു " --"ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -219,29 +231,24 @@ msgstr "" - "അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് " - "സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump അപ്‌ലോഡ് ചെയ്യുന്നതിന് മുമ്പ് ചോദിയ്ക്കുക" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "സെന്‍സിറ്റീവ് വിവരങ്ങള്‍ക്ക് സ്വകാര്യ ടിക്കറ്റ് ആവശ്യപ്പെടുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "പൂര്‍ണ്ണമല്ലാത്ത പ്രശ്നങ്ങള്‍ അറിയിയ്ക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -252,6 +259,22 @@ msgstr "" - "റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ " - "അനുവദിക്കുകയില്ല." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -278,14 +301,14 @@ msgstr "സംബന്ധിച്ചു്" - msgid "Quit" - msgstr "പുറത്തു് കടക്കുക" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -297,11 +320,11 @@ msgstr "" - msgid "Problem directory" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ക്രമീകരണ ഫയല്‍" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -315,24 +338,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ക്ലയന്റ് യുഐഡി ആയി NUM ഉപയോഗിയ്ക്കുക" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന്റെ പേരുകള്‍ ചേര്‍ക്കുക" - -@@ -340,63 +364,53 @@ msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന് - msgid "Unknown error" - msgstr "അപരിചിതമായ പിശക്" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "അധികാരമില്ല" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "മാറ്റം വരുത്തുന്നതിനായി പ്രശ്നം കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി " - "സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s'-ന്റെ വ്യാപ്തി ലഭ്യമല്ല" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "സ്ഥലം ലഭ്യമല്ല" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "'%s' എലമെന്റ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല ('%s' ഡയറക്ടറിയില്‍ നിന്നും)" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -406,12 +420,12 @@ msgstr "" - "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല " - "എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM നിമിഷങ്ങള്‍ നിഷ്ക്രിയമായശേഷം പുറത്തു് കടക്കുക" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര്‍ത്തിപ്പിയ്ക്കണം." - -@@ -438,18 +452,22 @@ msgstr "daemonize ചെയ്യേണ്ടതില്ല" - msgid "Log to syslog even with -d" - msgstr "-d ഉപയോഗിച്ചു് syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR-ല്‍ EVENT പ്രവര്‍ത്തിപ്പിയ്ക്കുക" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ഉപയോക്താവുമായി നേരിട്ടു് ഇടപെടുക" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -494,93 +512,94 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "MiB-ല്‍ ഏറ്റവും കൂടിയ ക്യാഷ് വ്യാപ്തി. സ്വതവേയുള്ളതു്" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ സംവിധാനം ഓഫ് ചെയ്യുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat പിന്തുണയ്ക്കുള്ള ഉപയോക്തൃനാമം" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat പിന്തുണയ്ക്കുള്ള രഹസ്യവാക്ക്, നല്‍കിയിട്ടില്ലെങ്കില്‍, ഇതിനായി " - "ആവശ്യപ്പെടുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - "uReport എസ്എസ്എല്‍ സര്‍ട്ടിഫിക്കേറ്റ് പാഥ് അല്ലെങ്കില്‍ സര്‍ട്ടിഫിക്കേറ്റ് " - "രീതി" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr " --password-നുള്ള --username നല്‍കേണ്ടതുണ്ടു്" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "--username അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "--username അല്ലെങ്കില്‍ --anonymous ഉപയോഗിയ്ക്കാം" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "--anonymous അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ്റായ എണ്ണം" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "രഹസ്യവാക്ക്:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "രഹസ്യവാക്കില്ലാതെ തുടരുവാന്‍ സാധ്യമല്ല\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "എച്ടിടിപി ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "എസ്എസ്എല്‍ ക്ലയന്റ് ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "അപരിചിതമായ ഓട്ടോ റിപോര്‍ട്ടിങ്" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -601,83 +620,83 @@ msgstr "" - " FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ഡയറക്ടറിയല്ല: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്ലാഷില്‍ ആരംഭിയ്ക്കുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (കുത്തില്‍ ആരംഭിയ്ക്കുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (.. അടങ്ങുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്പെയിസ് അടങ്ങുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (ടാബ് അടങ്ങുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ഡയറക്ടറിയെ '{0}'-ലേക്ക് മാറ്റുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "അപരിചിതമായ ഫയല്‍ രീതി: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}'-ല്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}'-ല്‍ ഉറപ്പാക്കുന്നതില്‍ പിശക്" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' തുറക്കുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' തുറക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' വിജയകരമായി നടപ്പിലാക്കി" - -@@ -701,20 +720,28 @@ msgstr "'%s' chown ചെയ്യുവാന്‍ സാധ്യമല്ല - msgid "Deleting problem directory failed: %s" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട്ടിനീക്കുന്നതില്‍ പരാജയം: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" --"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -764,7 +791,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-നുള്ള ബാക്ക്ട്രെയിസ് പാഴ്സിങ് പരാജയപ്പെട്ടു" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ക്രാഷ് ത്രെഡ് ലഭ്യമായില്ല" - -@@ -879,7 +906,7 @@ msgid "Oops text extracted successfully" - msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാക്കി" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -887,6 +914,38 @@ msgstr "" - "ഹാര്‍ഡ്‌വെയര്‍ പിശകുകള്‍ ഉണ്ടായതായി കേര്‍ണല്‍ ലോഗ് സൂചിപ്പിയ്ക്കുന്നു.\n" - "അതുകൊണ്ടു് ഇതൊരു സോഫ്റ്റ്‌വെയര്‍ പ്രശ്നമല്ല.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -1008,7 +1067,36 @@ msgstr "debuginfo ഫയല്‍ ലഭ്യമല്ല: {0}" - msgid "All debuginfo files are available" - msgstr "എല്ലാ debuginfo ഫയലുകളും ലഭ്യമാണു്" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1018,7 +1106,7 @@ msgstr "" - "ഇതു് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഒരു സ്റ്റാക്ക് ട്രെയിസ് ലോക്കലായി " - "തയ്യാറാക്കപ്പെടുന്നു. (ഇതൊരു പക്ഷേ വലിയ ഡേറ്റാ ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1262,7 +1350,8 @@ msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിന - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation പോലെ തന്നെ, abrt.conf-ല്‍ DumpLocation " -@@ -1274,18 +1363,20 @@ msgstr "PROBLEM-ല്‍ ലഭ്യമാക്കിയ വിവരം സ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമാക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രിങ് പ്രിന്റ് ചെയ്തു് പുറത്തു് കടക്കുക" - -@@ -1295,11 +1386,13 @@ msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രി - msgid "Failed to compile regex" - msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1318,6 +1411,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1341,11 +1435,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1359,16 +1455,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1376,18 +1475,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1406,14 +1508,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1422,12 +1527,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1437,58 +1588,62 @@ msgstr "" - "\n" - "FILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "സാധാരണ ഔട്ട്പുട്ടിലേക്കു് ലഭ്യമായ ക്രാഷ് ഡേറ്റാ പ്രിന്റ് ചെയ്യുക" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "എല്ലാ ക്രാഷിനും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2040,7 +2195,7 @@ msgid "Sleeping for %d seconds" - msgstr "%d നിമിഷത്തേക്കു് മയങ്ങുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2049,7 +2204,7 @@ msgstr "" - "കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2058,7 +2213,7 @@ msgstr "" - "ലഭ്യമല്ല. അതിനാല്‍, കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് ഇതു് " - "പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2067,24 +2222,24 @@ msgstr "" - "കേര്‍ണലില്‍ ഒരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു (ഫ്ലാഗുകള്‍:%s). കാരണം എന്താണു് " - "എന്നു് കണ്ടുപിടിയ്ക്കുവാന്‍ കേര്‍ണല്‍ പാലകന്‍മാര്‍ക്കു് സാധ്യമായിട്ടില്ല." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " ലൈസന്‍സ് പ്രശ്നങ്ങളുള്ള ഘടകങ്ങള്‍: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ബഗ് ഐഡികള്‍" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ബോധി സര്‍വര്‍ യുആര്‍എല്‍ നല്‍കു" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ഒരു റിലീസ് വ്യക്തമാക്കുക" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2094,21 +2249,21 @@ msgstr "" - "\n" - "ബോധി സര്‍വറില്‍ പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുക" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുന്നു" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ഈ പാക്കേജിനു് പരിഷ്കരണങ്ങള്‍ ലഭ്യമല്ല" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "ലഭ്യമായ പരിഷ്കരണങ്ങളേക്കാള്‍ പുതിയതാണു് നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള പതിപ്പു്" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2138,71 +2293,72 @@ msgid "Delete files with found oopses" - msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള്ള ഫയലുകള്‍ വെട്ടി നീക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ഒന്നില്‍ കൂടുതല്‍ പ്രശ്നമുള്ള ഡയറക്ടറി തിരിച്ചറിയുന്നു" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി DIR നീക്കം ചെയ്യുക" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR-ല്‍ പ്രശ്നമുള്ള ഡേറ്റാ നിരീക്ഷിച്ചു് രേഖപ്പെടുത്തുക" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR സംബന്ധിച്ചുള്ള വിവരം പ്രിന്റ് ചെയ്യുക" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ്രിന്റ് ചെയ്യുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പിലാക്കുക" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "രേഖപ്പെടുത്താത്ത പ്രശ്നങ്ങള്‍ മാത്രം ലഭ്യമാക്കുക" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "വിശദമായ രേഖപ്പെടുത്തല്‍ കാണിയ്ക്കുക" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2213,59 +2369,69 @@ msgstr "" - "ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\n" - "ഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ഇതിലും വലുതായ വാചകം അബ്രിഡ്ജമായ കാണിയ്ക്കുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "'%s' പോലുള്ള പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമല്ല" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "സന്ദേശമില്ലാതെ പ്രശ്നത്തിന്റെ എണ്ണം മാത്രം പ്രിന്റ് ചെയ്യുക" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "നല്‍കിയിരിയ്ക്കുന്ന ടൈംസ്റ്റാമ്പിനേക്കാള്‍ പുതുതായ പ്രശ്നങ്ങള്‍ മാത്രം " - "പ്രിന്റ് ചെയ്യുക" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ " - "വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' വെട്ടി നീക്കുന്നു" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "രേഖപ്പെടുത്തിയ ശേഷം PROBLEM_DIR നീക്കം ചെയ്യുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' വെട്ടി നീക്കുന്നു" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip(s):" -@@ -2276,29 +2442,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' രേഖപ്പെടുത്തുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര്‍ത്തുക:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." - "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച്ച പ്രശ്നങ്ങള്‍ മാത്രം തെരഞ്ഞെടുക്കുന്നു" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/mr.po b/po/mr.po -index 4061beb..badba91 100644 ---- a/po/mr.po -+++ b/po/mr.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/mr/)\n" - "Language: mr\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,102 +30,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "सूचना: %s बंद करणे अशक्य" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "रिपोर्ट" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "सूचना: %s दाखवणे अशक्य" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio वाहिनी: '%s' पासून वाचणे अशक्य" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio वाहिनी: %s वरील एंकोडिंग सेट करणे अशक्य" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio वाहिनी: %s करीता नॉनब्लॉकिंग मोड सुरू करणे अशक्य" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -135,6 +135,17 @@ msgstr "" - "\n" - "ABRT तर्फे नवीन अडचणी आढळल्यास वापरकर्त्याला सूचीत करणारे ॲप्लेट\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "डिरेक्ट्री चोरण्यापूर्वी विचारा" -@@ -156,12 +167,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा " --"आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस " --"निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. " --"ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -207,10 +216,6 @@ msgstr "" - "रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "कोरडम्प अपलोड करण्यापूर्वी विचारा" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -218,15 +223,15 @@ msgstr "" - " हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह " - "बग तिकिट निर्माण करेल." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "संवेदनशील माहितीकरिता व्यक्तिगत तिकिटकरिता विनंती करा" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "अपूर्ण अडचणी सूचीत करा" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -236,6 +241,22 @@ msgstr "" - "मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास " - "परवानगी देणार नाही." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "बंद करा (_C)" -@@ -261,14 +282,14 @@ msgstr "विषयी" - msgid "Quit" - msgstr "बाहेर पडा" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -280,11 +301,11 @@ msgstr "" - msgid "Problem directory" - msgstr "प्रॉब्लेम डिरेक्ट्री" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "संरचना फाइल" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -298,24 +319,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM चा क्लाएंट uid म्हणून वापर करा" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog करीता लॉग" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "लॉगमध्ये कार्यक्रम नावे समाविष्ट करा" - -@@ -323,60 +345,50 @@ msgstr "लॉगमध्ये कार्यक्रम नावे सम - msgid "Unknown error" - msgstr "अपरिचीत त्रुटी" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' वैध एलिमेंट नाव नाही" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' एलिमेंट संपादित करणे अशक्य" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ओळख पटली नाही" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "संपादनकरीता अडचणकरीता प्रवेश अशक्य" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' वैध एलिमेंट नाव नाही" -+msgid "'%s' element can't be modified" -+msgstr "'%s' एलिमेंट संपादित करणे अशक्य" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s'ची आकार प्राप्ति अशक्य" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "प्रॉबलेम जागा बाकी नाही" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरेक्ट्रि '%s' पासून नष्ट करणे अशक्य" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -386,12 +398,12 @@ msgstr "" - "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी " - "करा.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "निष्क्रिय झाल्यावर NUM सेकंदानंतर बाहेर पडा" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "हा प्रोग्राम रूट वापरकर्ता म्हणून चालवा." - -@@ -416,18 +428,22 @@ msgstr "डिमन स्वरूपी बनवू नका" - msgid "Log to syslog even with -d" - msgstr "syslog मध्ये -d पर्यायसह लॉग करा" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR वर EVENT चालवा" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "प्रत्यक्षरित्या वापरकर्त्याशी संपर्क करा" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -465,87 +481,88 @@ msgstr "कंकरंट वर्कर्सची संख्या. प - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB मधील कमाल कॅशे आकार. पूर्वनिर्धारित आहे " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ओळख पटवणे बंद करते" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support वापकर्ता नाव" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support पासवर्ड, दिले नसल्यास, त्याकरिता विनंती दिली जाईल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL प्रमाणपत्र मार्ग किंवा प्रमाणपत्र प्रकार" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password करिता --username देखील निर्देशीत करावे लागेल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "एकतर --username किंवा --certificate यांचा वापर शक्य आहे" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "एकतर --username किंवा --anonymous यांचा वापर शक्य आहे" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "एकतर --anonymous किंवा --certificate यांचा वापर शक्य आहे" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "अवैध बाबींची संख्या" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "पासवर्ड:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "पासवर्डविना पुढे जाणे अशक्य\n" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ऑथेंटिकेटेड स्व अहवाल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL क्लाएंट ऑथेंटिकेटेड स्व अहवाल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "निनावी स्व अहवाल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -566,83 +583,83 @@ msgstr "" - " FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "डिरेक्ट्री नाही: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "वगळत आहे: '{0}' (स्लॅशपासून सुरू होते)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "वगळत आहे: '{0}' (डॉटपासून सुरू होते)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "वगळत आहे: '{0}' (समाविष्टीत आहे ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "वगळत आहे: '{0}' (स्पेस समाविष्टीत आहे)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "वगळत आहे: '{0}' (टॅब समाविष्टीत आहे)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' करिता डिरेक्ट्री बदलणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "अपरिचीत फाइल प्रकार: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' मध्ये कार्यरत डिरेक्ट्री निर्माण करणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ला '{1}' करिता हलविणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' चे '{1}' मध्ये प्रत करणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' वरील तापसणी त्रुटी" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' खुले करत आहे" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' डिरेक्ट्रीचे निर्माण अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' खुले करणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' यशस्वीरित्या विश्लेषणीत केले" - -@@ -666,18 +683,26 @@ msgstr "'%s': %s chown करणे अशक्य" - msgid "Deleting problem directory failed: %s" - msgstr "अडचण डिरेक्ट्री: %s नष्ट करण्यास अपयशी" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus: %s पासून अडचण सूची प्राप्त करणे अशक्य" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -724,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s करीता बॅकट्रेस वाचणे अपयशी" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "क्रॅश थ्रेड आढळले नाही" - -@@ -830,7 +855,7 @@ msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक - msgid "Oops text extracted successfully" - msgstr "ऊप्स मजकूर यशस्वीरित्या प्राप्त केले" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -838,6 +863,38 @@ msgstr "" - "कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\n" - "हे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -955,7 +1012,36 @@ msgstr "debuginfo फाइल: {0} आढळली नाही" - msgid "All debuginfo files are available" - msgstr "सर्व debuginfo फाइल्स् उपलब्ध आहे" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -965,7 +1051,7 @@ msgstr "" - "असल्यास, स्टॅक ट्रेस् स्थानीयरित्या निर्माण केले जाईल. (कदाचित प्रचंड डाटा " - "डाउनलोड होईल)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1201,7 +1287,8 @@ msgstr "प्रत्येक ऊप्सकरीता DIR मधील - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation प्रमाणेच आहे, DumpLocation ला abrt.conf मध्ये निर्देशीत केले " -@@ -1213,16 +1300,18 @@ msgstr " PROBLEM मध्ये प्राप्य माहिती सा - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "प्रॉब्लेम डिरेक्ट्री जग वाचनजोगी बनवा" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "प्रति १ सेकंदकरिता थ्रॉटल अडचण डिरेक्ट्रीचे निर्माण" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout करीता सर्च स्ट्रिंग्स्ची छपाई करा व बाहेर पडू नका" - -@@ -1232,9 +1321,13 @@ msgstr "stdout करीता सर्च स्ट्रिंग्स्च - msgid "Failed to compile regex" - msgstr "रेगेक्स कंपाइल करण्यास अपयशी" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1253,6 +1346,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1276,11 +1370,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1294,16 +1390,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1311,18 +1410,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1341,14 +1443,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1357,12 +1462,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1372,59 +1523,63 @@ msgstr "" - "\n" - "FILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "स्टँडर्ड आउटपुटवर क्रॅश डाटाची छपाई करा" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "प्रत्येक आढळलेल्या क्रॅशकरीता DIR मध्ये प्रॉबलेम डिरेक्ट्रि निर्माण करा" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1951,7 +2106,7 @@ msgstr "NSS शटडाउन करण्यास अपयशी." - msgid "Sleeping for %d seconds" - msgstr "%d सेकंदकरिता निष्क्रीय झाले" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1959,7 +2114,7 @@ msgstr "" - "खंडीत BIOS मुळे कर्नल अडचण आढळली. दुर्दैवाने, अशा अडचणींचे कर्नल " - "मैनटेनर्सतर्फे निवारण केले जात नाही." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1967,7 +2122,7 @@ msgstr "" - "कर्नल अडचण आढळली, परंतु तुमचे हार्डवेअर असमर्थीत आहे, म्हणून ह्या अडचणीचे " - "कर्नल मैनटेनर्सतर्फे निवारण शक्य नाही." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1976,24 +2131,24 @@ msgstr "" - "कर्नल अडचणी आढळली, परंतु कर्नलमध्ये दोष देखील आढळले (फ्लग्स्:%s). कर्नल " - "मैनटेनर्स् दोषीत अहवालांचे विश्लेषण करण्यास अशक्य." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " टैंटेड मॉड्युल्स: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "बग आयडिजची सूची" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "बोधि सर्व्हर url निर्देशीत करा" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "प्रकाशन निर्देशीत करा" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2003,20 +2158,20 @@ msgstr "" - "\n" - "बोधि सर्व्हरवर सुधारणांकरीता शोधा" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "सुधारणांकरीता शोधत आहे" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ह्या संकुलकरीता सुधारणा आढळले नाही" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "संकुलाची स्थानीय आवृत्ती उपलब्ध सुधारणांपेक्षा नवीन आहे" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2043,66 +2198,67 @@ msgstr "आढळलेल्या ऊप्सेसची छपाई कर - msgid "Delete files with found oopses" - msgstr "आढळलेल्या ऊप्सेसपासून फाइल्स नष्ट करा" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' एकापेक्षा जास्त अडचण डिरेक्ट्री ओळखते" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "अडचणींची सूची दाखवा [DIRs मध्ये]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "प्रॉब्लेम डिरेक्ट्री DIR काढून टाका" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR मध्ये प्रॉब्लेम डाटाचे विश्लेषण करा व कळवा" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR विषयी माहितीची छपाई करा" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "नुकतेच क्रॅशच्या प्रमाणची छपाई करा" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "बहु अडणी विश्लेषीत करा" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "फक्त-न कळवलेल्या अडचणींची सूची दाखवा" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "तपशील अहवाल दाखवा" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नवीन अडचणींची सूची दाखवा" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "फक्त निर्देशीत टाइमस्टॅम्पपेक्षा जुण्या अडचणीच दाखवा" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2113,53 +2269,63 @@ msgstr "" - "root परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास " - "गृहीत धरा\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "यापेक्षा मोठे मजकूर अब्रिज्ड दाखवले जाईल" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "या प्रकारची अडचण डिरेक्ट्री '%s' नाही" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "कोणत्याही संदेशविना फक्त अडचण प्रमाणाची छपाई करा" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नुकतेच अडचणींची छपाई करा" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRTला %u अडचणी आढळले. अधिक माहितीकरिता: abrt-cli list%s चालवा\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' नष्ट करणे" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [पर्याय] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "कळविल्यानंतर PROBLEM_DIR काढून टाका" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' नष्ट करणे" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "कृती: remove(rm), info(i), skip(s):" -@@ -2170,27 +2336,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "कृती: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' कळविणे" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "पुढील अडचणीकरिता ENTER दाबा:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since बाबविना, सर्व आढळलेल्या अडचणींची पुनराकृती करते." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "फक्त टाइमस्टॅम्पनंतर आढळलेल्या अडचणींनाच पसंत करते" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/nb.po b/po/nb.po -index 6ee7aba..30f520e 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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 "" - "abrt/language/nb/)\n" - "Language: nb\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,102 +30,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan ikke ta eierskap av «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapporter" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -135,6 +135,17 @@ msgstr "" - "\n" - "Panelprogram som varsler bruker når nye problemer oppdages av ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -156,7 +167,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -189,30 +202,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -238,14 +263,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -257,11 +282,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurasjonsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -275,24 +300,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [alternativer]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logg til syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Legg til programnavn i loggen" - -@@ -300,60 +326,50 @@ msgstr "Legg til programnavn i loggen" - msgid "Unknown error" - msgstr "Ukjent feil" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Ikke autorisert" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -361,12 +377,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Avslutt etter NUM sekunder uten aktivitet" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Programmet må kjøres som root" - -@@ -387,18 +403,22 @@ msgstr "Ikke kjør som tjeneste" - msgid "Log to syslog even with -d" - msgstr "Logg til systemlogg selv med -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -428,73 +448,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -506,68 +527,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -591,18 +612,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -643,7 +672,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Tolking av dump feilet for %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -732,12 +761,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -846,14 +907,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1068,7 +1158,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1078,16 +1169,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1096,8 +1189,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1117,6 +1214,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1140,11 +1238,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1158,16 +1258,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1175,18 +1278,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1205,14 +1311,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1221,70 +1330,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1784,63 +1943,63 @@ msgstr "Klarte ikke å stenge ned NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Oppgi en versjon" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Søker etter oppdateringer" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ingen oppdateringer funnet for denne pakken" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1862,65 +2021,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Vis detaljert rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1928,49 +2088,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1979,24 +2149,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/nds.po b/po/nds.po -index 12531c2..8f3c2e7 100644 ---- a/po/nds.po -+++ b/po/nds.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/nds/)\n" - "Language: nds\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Berichten" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/nl.po b/po/nl.po -index 820892b..5f486a9 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -12,17 +12,17 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-19 12:01-0400\n" -+"PO-Revision-Date: 2015-10-16 10:28-0400\n" - "Last-Translator: Geert Warrink \n" - "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" - "language/nl/)\n" - "Language: nl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,34 +32,34 @@ msgstr "Probleemrapportage" - msgid "View and report application crashes" - msgstr "Bekijk en rapporteer crashes van toepassingen" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan '%s' niet claimen" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Kan map niet openen voor het schrijven van '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Kan notificatie niet sluiten: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapport" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Opnieuw starten" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -68,7 +68,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem is automatisch " - "gerapporteerd." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -77,8 +77,8 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem zal " - "gerapporteerd worden zodra het internet beschikbaar is." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -87,7 +87,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Neem contact op met de " - "ontwikkelaar als je het probleem wilt rapporteren." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -96,7 +96,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Stuur een rapport op als je " - "wilt helpen met het oplossen van het probleem." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -104,7 +104,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " - "probleem is automatisch gerapporteerd." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -112,7 +112,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " - "probleem zal gerapporteerd worden zodra het internet beschikbaar is." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -120,28 +120,28 @@ msgstr "" - "Sorry, het ziet er naar uit dat er een probleem is opgetreden. Stuur een " - "rapport op als je wilt helpen met het oplossen van het probleem." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Kan notificatie niet tonen: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Kan niet van gio kanaal lezen: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Kan codering op gio kanaal niet instellenl: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Kan niet-blokkerende modus niet instellen voor gio kanaal: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -152,6 +152,17 @@ msgstr "" - "Applet die de gebruiker waarschuwt als nieuwe problemen door ABRT " - "gedetecteerd zijn\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Vraag voordat een map gestolen wordt" -@@ -173,13 +184,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een " --"tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de " --"stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar " --"deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden " --"zonder te vragen." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -227,10 +235,6 @@ msgstr "" - "aan gezet is." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Vraag voordat een coredump geüpload wordt " -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -238,15 +242,15 @@ msgstr "" - " Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met " - "beperkte toegang als mogelijk gevoelige data ontdekt is." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Vraag privé ticket aan voor gevoelige informatie" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Geef incomplete problemen aan" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -256,6 +260,22 @@ msgstr "" - "wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te " - "bieden, zal ABRT je niet toestaan om deze problemen in te dienen." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Sluiten" -@@ -281,7 +301,7 @@ msgstr "Over" - msgid "Quit" - msgstr "Verlaten" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -291,7 +311,7 @@ msgstr "" - "\n" - "Bevraag pakketdatabase en sla pakket en onderdeel naam op" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -303,11 +323,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Probleemmap" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Configuratiebestand" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Gebruik deze map als RPM root" - -@@ -323,24 +343,25 @@ msgstr "& [-v] -d MAP\n" - msgid "Root directory for running container commands" - msgstr "Root map voor het uitvoeren van container commando's" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opties]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Gebruik NUM as cliënt uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Loggen naar syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Voeg programmanamen toe aan de log" - -@@ -348,62 +369,52 @@ msgstr "Voeg programmanamen toe aan de log" - msgid "Unknown error" - msgstr "Onbekende fout" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' is geen geldige probleemmap" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' is geen geldige element naam" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' element kan niet veranderd worden" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' is geen geldige probleemmap" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Niet geauthoriseerd" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Krijg geen toegang tot het probleem om het te veranderen" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' element kan niet veranderd worden" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer " - "details. " - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Krijg geen toegang tot het probleem om te lezen" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' is geen geldige element naam" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Kan grootte van '%s' niet verkrijgen" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Er is geen probleemruimte meer" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -413,12 +424,12 @@ msgstr "" - "De naam '%s' is verloren gegaan, controleer of er geen andere service draait " - "die eigenaar is van de naam.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Afsluiten na NUM seconden van inactiviteit" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Dit programma moet door root worden uitgevoerd" - -@@ -445,18 +456,22 @@ msgstr "Niet instellen als daemon" - msgid "Log to syslog even with -d" - msgstr "Loggen naar syslog zelfs met -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT MAP..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Voer EVENT uit op DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Communiceer rechtstreeks met de gebruiker" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -494,75 +509,76 @@ msgstr "Aantal gelijktijdige werkers. Standaard is " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximale cachegrootte in MiB. Standaard is " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Zet de authenticatie uit" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support gebruikersnaam" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support wachtwoord, als deze niet opgegeven wordt, zal een prompt " - "uitgegeven worden" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL certificaatpaden of certificaattype" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Je moet voor --password ook --username specificeren" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Je kunt --username of --certificate gebruiken" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Je kunt --username of --anonymous gebruiken" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Je kunt --anonymous of --certificate gebruiken" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Ongeldig aantal argumenten" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Onbekende optiewaarde: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Wachtwoord:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Kan niet verdergaan zonder wachtwoord\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Automatisch rapporteren met HTTP authenticatie" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Automatisch rapporteren met SSL Cliënt authenticatie" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Automatisch anoniem rapporteren" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -581,68 +597,68 @@ msgstr "" - " UPLOAD_MAP - Map waarin geüploade archieven opgeslagen worden\n" - " BESTANDSNAAM - Naam van geüploade archief\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Geen map: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Wordt overgeslagen: '{0}' (begint met een slash)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Wordt overgeslagen: '{0}' (begint met een punt)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Wordt overgeslagen: '{0}' (bevat ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Wordt overgeslagen: '{0}' (bevat een spatie)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Wordt overgeslagen: '{0}' (bevat een tab)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Kan de map niet veranderen naar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Onbekend bestandstype: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Kan de werkmap niet veranderen naar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Kan '{0}' niet verplaatsen naar '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Kan '{0}' niet kopiëren naar '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Verificatiefout bij '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' wordt uitgepakt" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Kan map '{0}' niet aanmaken" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Kan '{0}' niet uitpakken" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' is met succes verwerkt" - -@@ -666,21 +682,29 @@ msgstr "Kan niet chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Verwijderen probleemmap mislukt: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Kan geen probleemlijst verkrijgen van abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Kan met abrt-dbus niet testen of het element bestaat: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -725,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Backtrace ontleden mislukte voor %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Crash thread werd niet gevonden" - -@@ -832,7 +856,7 @@ msgstr "Kan de oops boodschap niet extraheren: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Oops tekst met succes geextraheerd" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -840,6 +864,38 @@ msgstr "" - "De kernel log geeft aan dat hardwarefouten zijn ontdekt.\n" - "Dit is waarschijnlijk geen softwareprobleem.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -981,7 +1037,36 @@ msgstr "Ontbrekend debuginfo-bestand: {0}" - msgid "All debuginfo files are available" - msgstr "Alle debuginfo-bestanden zijn beschikbaar" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -991,7 +1076,7 @@ msgstr "" - "antwoord 'Nee' is , zal lokaal een stacktrace aangemaakt worden. (Dit kan " - "een grote hoeveelheid data gaan downloaden.)" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1224,7 +1309,8 @@ msgstr "Maak nieuwe probleem map aan in MAP voor elke gevonden oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Hetzelfde als -d DumpLocation, DumpLocation wordt gespecificeerd in abrt." -@@ -1236,16 +1322,18 @@ msgstr "Sla de geextraheerde informatie op in PROBLEEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Maak de probleemmap leesbaar voor iedereen" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Beperk het aanmaken van probleemmappen tot 1 per seconde" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Print zoekstring(s) naar stdout en sluit af" - -@@ -1254,9 +1342,13 @@ msgstr "Print zoekstring(s) naar stdout en sluit af" - msgid "Failed to compile regex" - msgstr "Reguliere expressie kon niet gecompileerd worden" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Kan het probleem niet vernieuwen: meer dan een oops gevonden" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1275,6 +1367,7 @@ msgstr "Opslaan gedetecteerde probleemdata in abrt database mislukte" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Kan de systemd-journal waarneming niet initialiseren" - -@@ -1311,11 +1404,13 @@ msgstr "Maak nieuwe probleemmap aan in MAP voor elke coredump" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Begin met lezen van systemd-journal op de CURSOR positie" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Begin met lezen van systemd-journal vanaf het einde" - -@@ -1329,17 +1424,20 @@ msgstr "Zelfde als -t INT, INT wordt gespecificeerd in plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Volg systemd-journal vanaf de laatst bekeken positie (indien beschikbaar)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Je moet -c CURSOR of -e specificeren" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Kan systemd-journal niet openen" - -@@ -1347,18 +1445,21 @@ msgstr "Kan systemd-journal niet openen" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Kan systemd-journal niet filteren naar alleen systemd-coredump data" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Kan niet zoeken tot aan het end van het journaal" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Instellen van systemd-journal cursor '%s' mislukte" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Kan geen journaaldata lezen" - -@@ -1390,28 +1491,77 @@ msgstr "" - "De laatst bekeken positie wordt opgeslagen in " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Lees journaalbestanden van alle machines" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Lees alle journaalbestanden uit de map op PAD" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Kan systemd-journal niet initialiseren in de map '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Kan systemd-journal niet filteren naar alleen kernel data" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Starten van waarneming vanaf cursor '%s' mislukte" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1421,46 +1571,50 @@ msgstr "" - "\n" - "Extraheer Xorg crash van FILE (of standaard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Print vond crashdata bij standaard output" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Maak probleem map aan in MAP voor elke gevonden crash" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Kan de positie van de journaalwaarneming niet opslaan" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Kan de positie van de journaalwaarneming niet opslaan: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "De positie van de journaalwaarneming wordt niet hersteld: bestand '%s' " - "bestaat niet" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "Kan de positie van de journaalwaarneming niet herstellen van bestand '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Kan de positie van de journaalwaarneming niet herstellen: pad '%s' is geen " - "gewoon bestand" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1468,12 +1622,12 @@ msgstr "" - "Kan de positie van de journaalwaarneming niet herstellen: bestand '%s' " - "overschrijdt de %dB groottelimiet" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Kan de positie van de journaalwaarneming niet herstellen: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1481,7 +1635,7 @@ msgstr "" - "bestand '%s' niet lezen" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2022,7 +2176,7 @@ msgstr "Afsluiten van NSS mislukte." - msgid "Sleeping for %d seconds" - msgstr "In slaap voor %d seconden" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2030,7 +2184,7 @@ msgstr "" - "Er is een kernelprobleem opgetreden wegens een BIOS defect. Zulke problemen " - "kunnen helaas niet opgelost worden met kernelonderhoud." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2038,7 +2192,7 @@ msgstr "" - "Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, " - "daarom kunnen kernelmaintainers dit probleem niet repareren." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2047,24 +2201,24 @@ msgstr "" - "Een kernelprobleem trad op, maar de kernel werd aangetast (flags:%s). " - "Kernelmaintainers kunnen geen diagnose stellen bij aangetaste rapporten." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Aangetaste modules: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lijst van bug ids" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Geef een bodhi-server-url op" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Geef een release op" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2074,20 +2228,20 @@ msgstr "" - "\n" - "Zoek naar updates op bodhi server" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Updates zoeken" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Geen updates voor dit pakket gevonden" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "De locale versie van het pakket is nieuwer dan de beschikbare updates" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2116,68 +2270,69 @@ msgstr "Print gevonden oopses" - msgid "Delete files with found oopses" - msgstr "Verwijder bestanden met gevonden oopses" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' identificeert meer dan een probleemmap" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Toon problemen [in MAPpen]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Verwijder probleemmap DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyseer en rapporteer probleemdata in DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Print informatie over DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Print de telling van de recente crashes" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Verwerk meerdere problemen" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opties]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Toon alleen niet-gerapporteerde problemen" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Toon gedetailleerd rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Toon alleen de problemen die recenter zijn dan de gespecificeerde " - "tijdstempel" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Toon alleen de problemen die ouder zijn dan de gespecificeerde tijdstempel" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2189,51 +2344,61 @@ msgstr "" - "als een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te " - "voeren.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Tekst groter dan dit zal verkort getoond worden" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Geen probleemmap '%s' bekend" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Print alleen de probleem telling zonder een boodschap" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-" - "cli list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [opties] MAP..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Verwijder PROBLEM_DIR na het rapporteren" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "'%s' wordt verwijderd" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [opties] MAP..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Verwijder PROBLEM_DIR na het rapporteren" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Acties: remove(rm), info(i), skip(s):" -@@ -2242,26 +2407,181 @@ msgstr "Acties: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Acties: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' wordt gerapporteerd" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Duw voor het volgende probleem op ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Zonder het --since argument, wordt over alle gedetecteerde problemen " - "geïtereerd." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Selecteert alleen problemen die na het tijdstempel gedetecteerd zijn." - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/or.po b/po/or.po -index da975ec..7e64244 100644 ---- a/po/or.po -+++ b/po/or.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/or/)\n" - "Language: or\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,102 +31,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ରିପୋର୍ଟ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ବିଜ୍ଞପ୍ତି ଦର୍ଶାଇପାରିବେ ନାହିଁ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ଚ୍ୟାନେଲରୁ ପଢ଼ିପାରିବେ ନାହିଁ: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ଚ୍ୟାନେଲରେ ସାଙ୍କେତିକରଣକୁ ସେଟ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁନଥିବା ଧାରାକୁ ଅନ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +137,17 @@ msgstr "" - "ABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯାଗୁଡ଼ିକ ଚିହ୍ନା ପଡ଼ିବା ସମୟରେ ଯେଉଁ ଚାଳକ ଆପଲେଟକୁ " - "ପରିବର୍ତ୍ତନ କରିଥାଏ\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -157,19 +168,15 @@ msgstr "ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" - msgid "Silent shortened reporting" - msgstr "ନିରବରେ ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ " --"ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ " --"ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। " --"ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ " --"କରିଥାଏ।" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -219,29 +226,24 @@ msgstr "" - "ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ " - "ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump ଧାରଣ କରିବା ପୂର୍ବରୁ ପଚାରନ୍ତୁ" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ସମ୍ବେଦନଶୀଳ ସୂଚନା ପାଇଁ ବ୍ୟକ୍ତିଗତ ଟିକଟ ଅନୁରୋଧ କରନ୍ତୁୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ସୂଚାନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -251,6 +253,22 @@ msgstr "" - "ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT " - "ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" -@@ -276,14 +294,14 @@ msgstr "ବିବରଣୀ" - msgid "Quit" - msgstr "ବିଦାୟ ନିଅନ୍ତୁ" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -295,11 +313,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "କନଫିଗରେସନ ଫାଇଲ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -313,24 +331,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ବିକଳ୍ପଗୁଡିକ]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM କୁ କ୍ଲାଏଣ୍ଟ uid ଭାବରେ ବ୍ୟବହାର କରନ୍ତୁ" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ପାଇଁ ଲଗ" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯୋଗ କରନ୍ତୁ" - -@@ -338,61 +357,51 @@ msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯ - msgid "Unknown error" - msgstr "ଅଜଣା ତ୍ରୁଟି" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "କ୍ଷମତା ସମ୍ପନ୍ନ ନୁହେଁ" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ପରିବର୍ତ୍ତନ ପାଇଁ ସମସ୍ୟାକୁ ଅଭିଗମ୍ୟ କରିପାରିବେ ନାହିଁ" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chowning ଡିରେକ୍ଟୋରୀ ବିଫଳ ହୋଇଛି। ଅଧିକ ବିବରଣୀ ପାଇଁ ତନ୍ତ୍ର ଲଗ ଯାଞ୍ଚ କରନ୍ତୁ।" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ର ଆକାର ପାଇବେ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "କୌଣସି ସମସ୍ୟା ସ୍ଥାନ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ '%s' ରୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -402,12 +411,12 @@ msgstr "" - "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ " - "କରନ୍ତୁ।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM ସେକଣ୍ଡ ନିଷ୍କ୍ରିୟ ହେବା ପରେ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ ଭାବରେ ଚଲାଇବା ଉଚିତ।" - -@@ -434,18 +443,22 @@ msgstr "daemonize କରନ୍ତୁ ନାହିଁ" - msgid "Log to syslog even with -d" - msgstr "-d ସହିତ ମଧ୍ଯ syslog ଘଟଣାକୁ ଲଗ କରନ୍ତୁ" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR ରେ EVENT କୁ ଚଲାନ୍ତୁ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ବ୍ୟବହାରକାରୀଙ୍କ ସହିତ ସିଧାସଳଖ ଭାବରେ ଯୋଗାଯୋଗ କରନ୍ତୁ" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -484,89 +497,90 @@ msgstr "ସହକାରୀ କର୍ମଚାରୀ ସଂଖ୍ୟା। ପୂ - msgid "Maximal cache size in MiB. Default is " - msgstr "ସର୍ବାଧିକ କ୍ୟାଶେ ଆକାର MiB ରେ। ପୂର୍ବନିର୍ଦ୍ଧାରିତଟି ହେଉଛି" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ବୈଧିକରଣକୁ ଅଫ୍‌ କରନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat ସହାୟତା ବ୍ୟବହାରକାରୀ ନାମ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat ସହାୟତା ପ୍ରବେଶ ସଂକେତ, ଯଦି ଦିଆଯାଇ ନାହିଁ, ତେବେ ଏହା ପାଇଁ ଏକ ପ୍ରମ୍ପ୍‌ଟ୍ " - "ଦିଆଯିବ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL ପ୍ରମାଣପତ୍ର ପଥ କିମ୍ବା ପ୍ରମାଣପତ୍ର ପ୍ରକାର" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "ଆପଣଙ୍କୁ --password ପାଇଁ --username ମଧ୍ଯ ଉଲ୍ଲେଖ କରିବା ଆବଶ୍ୟକ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "ଆପଣ --username କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "ଆପଣ --username କିମ୍ବା --anonymous ବ୍ୟବହାର କରିପାରିବେ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "ଆପଣ --anonymous କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ \n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL କ୍ଲାଏଣ୍ଟ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonymous ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବା" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -586,83 +600,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ଗୋଟିଏ ଡିରେକ୍ଟୋରୀ ନୁହଁ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ସ୍ଲାଶ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ଡଟ୍‌ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଧାରଣ କରିଥାଏ ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଖାଲିସ୍ଥାନ ଧାରଣ କରିଥାଏ )" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଟ୍ୟାବ୍‌ ଧାରଣ କରିଥାଏ )" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ଡିରୋକ୍ଟୋରୀକୁ '{0}' ଭାବରେ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "ଅଜଣା ଫାଇଲ ପ୍ରକାର: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' ରେ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' କୁ '{1}' କୁ ଘୁଞ୍ଚାଇପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' କୁ '{1}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' ରେ ଯାଞ୍ଚ ତୃଟି" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' କୁ ଖୋଲୁଅଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' କୁ ଖୋଲିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' କୁ ସଫଳତାର ସହିତ କାର୍ଯ୍ୟକାରୀ ହୋଇଛି" - -@@ -686,18 +700,26 @@ msgstr "chown '%s' କରିପାରିବେ ନାହିଁ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଅପସାରଣ ବିଫଳ ହୋଇଛି: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତାଲିକା ପାଇପାରିବେ ନାହିଁ: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -745,7 +767,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s ପାଇଁ ବ୍ୟାକଟ୍ରାସ ବିଶ୍ଳେଷଣ ବିଫଳ ହୋଇଛି" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "କ୍ରାସ ଥ୍ରେଡ଼ ମିଳୁ ନାହିଁ" - -@@ -853,7 +875,7 @@ msgstr "oops ସନ୍ଦେଶକୁ ବାହାର କରିପାରିବ - msgid "Oops text extracted successfully" - msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କରାଯାଇଛି" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -861,6 +883,38 @@ msgstr "" - "ହାର୍ଡୱେର ତୃଟିଗୁଡ଼ିକ ଚିହ୍ନଟ ହୋଇଛି ବୋଲି କର୍ଣ୍ଣଲ ଲଗ ସୂଚାଇଥାଏ।\n" - "ଏହା ସମ୍ଭବତଃ ଏକ ସଫ୍ଟୱେର ସମସ୍ୟା ନୁହଁ।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -978,7 +1032,36 @@ msgstr "ଅନୁପସ୍ଥିତ ତ୍ରୁଟିନିବାରଣ ଫା - msgid "All debuginfo files are available" - msgstr "ସମସ୍ତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ଉପଲବ୍ଧ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -988,7 +1071,7 @@ msgstr "" - "ଆପଣଙ୍କର ଉତ୍ତର 'ନାଁ' ତେବେ, ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି ହେବ। (ଏହା " - "ହୁଏତଃ ବହୁ ପରିମାଣର ତଥ୍ୟ ଆହରଣ କରିପାରେ)।" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1229,7 +1312,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ abrt.conf ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" -@@ -1240,16 +1324,18 @@ msgstr "ବାହାର କରାଯାଇଥିବା ସୂଚନାକୁ ସ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ବିଶ୍ୱ ପଠନଯୋଗ୍ୟ କରନ୍ତୁ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣକୁ ପ୍ରତି ସେକେଣ୍ଡରେ 1କୁ ତ୍ୱରିତ କରନ୍ତୁ" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ଼ିକୁ) ମୁଦ୍ରଣ କରନ୍ତୁ ଏବଂ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" - -@@ -1259,9 +1345,13 @@ msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ - msgid "Failed to compile regex" - msgstr "regex କୁ ସଙ୍କଳନ କରିବାରେ ବିଫଳ" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "ଏହି ସମସ୍ୟାକୁ ଅଦ୍ୟତନ କରିପାରିବେ ନାହିଁ: ଗୋଟିଏରୁ ଅଧିକ oops ମିଳିଛି" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1280,6 +1370,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1303,11 +1394,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1321,16 +1414,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1338,18 +1434,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1368,14 +1467,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1384,12 +1486,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1399,59 +1547,63 @@ msgstr "" - "\n" - "Xorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "ମାନକ ଫଳାଫଳ ଉପରେ ମୁଦ୍ରଣୀ ନଷ୍ଟ ତଥ୍ୟ ପାଇଛି" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "ମିଳିଥିବା ପ୍ରତ୍ୟେକ ନଷ୍ଟ ବିବରଣୀ ପାଇଁ DIR ରେ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1986,7 +2138,7 @@ msgstr "NSS କୁ ବନ୍ଦ କରିବାରେ ବିଫଳ।" - msgid "Sleeping for %d seconds" - msgstr "%d ସେକେଣ୍ଡ ପାଇଁ ସୁପ୍ତ ଅଛି" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1994,7 +2146,7 @@ msgstr "" - "ଖରାପ BIOS ହେତୁ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି। ଦୁର୍ଭାଗ୍ୟ ବଶତଃ, ଏପରି ସମସ୍ୟାଗୁଡ଼ିକୁ " - "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନଙ୍କ ଦ୍ୱାରା ସମାଧାନ ହୋଇପାରିବ ନାହିଁ।" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2002,7 +2154,7 @@ msgstr "" - "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି, କିନ୍ତୁ ଆପଣଙ୍କର ହାର୍ଡୱେର ସହାୟତା ପ୍ରାପ୍ତ ନୁହଁ, " - "ତେଣୁ କର୍ଣ୍ଣଲ ପରିଚାଳକ ମାନେ ଏହି ସମସ୍ୟାର ସମାଧାନ କରିବାରେ ଅସମର୍ଥ।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2011,24 +2163,24 @@ msgstr "" - "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଘଟିଛି, କିନ୍ତୁ ଆପଣଙ୍କର କର୍ଣ୍ଣଲ ଖରାପ ହୋଇଯାଇଛି (ସୂଚକ:%s). " - "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନେ ତ୍ରୁଟି ବିବରଣୀଗୁଡ଼ିକୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " ଦୂଷିତ ମଡ୍ୟୁଲଗୁଡ଼ିକ: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ତ୍ରୁଟି id ଗୁଡ଼ିକର ତାଲିକା" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ଏକ ବୋଧି ସର୍ଭର url ଉଲ୍ଲେଖ କରନ୍ତୁ" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ଏକ ପ୍ରକାଶନୀ ଉଲ୍ଲେଖ କରନ୍ତୁ" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2038,20 +2190,20 @@ msgstr "" - "\n" - "ବୋଧି ସର୍ଭର ଉପରେ ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରନ୍ତୁ" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରୁଅଛି" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ଏହି ପ୍ୟାକେଜ ପାଇଁ କୌଣସି ଅଦ୍ୟତନ ନାହିଁ" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "ପ୍ୟାକେଜର ସ୍ଥାନୀୟ ସଂସ୍କରଣ ଉପଲବ୍ଧ ଅଦ୍ୟତନଗୁଡ଼ିକ ଠାରୁ ନୂଆ ଅଟେ" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2079,68 +2231,69 @@ msgstr "ମୁଦ୍ରଣୀ oopses ପାଇଛି" - msgid "Delete files with found oopses" - msgstr "ମିଳିଥିବା oopses ସହିତ ଫାଇଲଗୁଡ଼ିକୁ ଅପସାରଣ କରନ୍ତୁ" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ଗୋଟିଏରୁ ଅଧିକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଚିହ୍ନିଟ କରିଛି" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "ତାଲିକା ସମସ୍ୟା [DIRs ରେ]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "ସମସ୍ଯା ଡିରେକ୍ଟୋରୀ DIRରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR ରେ ସମସ୍ୟା ତଥ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ବିଷୟରେ ସୂଚନାକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "କେବଳ ଖବର କରାଯାଇନଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "ବିସ୍ତୃତ ବିବରଣୀ ଦର୍ଶାନ୍ତୁ" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମା ଠାରୁ ପୁରୁଣା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2151,55 +2304,65 @@ msgstr "" - "କୁ ନ୍ୟସ୍ତ କରି\n" - "ଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ଏହାଠାରୁ ବଡ଼ ପାଠ୍ୟକୁ ସଂକ୍ଷିପ୍ତରେ ଦର୍ଶାଯିବ" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "ଏପରି କୌଣସି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନାହିଁ '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "କୌଣସି ସନ୍ଦେଶ ବିନା କେବଳ ସମସ୍ୟା ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟ ସୀମା ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u ସମସ୍ୟା(ଗୁଡ଼ିକୁ) ଚିହ୍ନଟ କରିଛି। ଅଧିକ ସୂଚନା ପାଇଁ ଏହାକୁ ଚଲାନ୍ତୁ: abrt-" - "cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& ବିବରଣୀ [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "ଖବର କରିସାରିବା ପରେ PROBLEM_DIR କୁ ବାହାର କରନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" -@@ -2210,28 +2373,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "କାର୍ଯ୍ୟ: (rm),report(e), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' କୁ ଖବର କରା ସରିଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବାନ୍ତୁ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ବାଛନ୍ତୁ" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/pa.po b/po/pa.po -index 4a9d600..15a960a 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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 "" - "abrt/language/pa/)\n" - "Language: pa\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -33,102 +33,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ਰਿਪੋਰਟ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ਸੂਚਨਾ ਨਹੀਂ ਵੇਖਾ ਸਕਿਆ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "'%s' ਤੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ਚੈਨਲ ਤੇ ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹੀਂ ਚਾਲੂ ਕਰ ਸਕਿਆ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -138,6 +138,17 @@ msgstr "" - "\n" - "ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੀ ਨਵੀਂ ਸਮੱਸਿਆ ਬਾਰੇ ਦੱਸਦਾ ਹੈ\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -156,18 +167,15 @@ msgstr "" - msgid "Silent shortened reporting" - msgstr "" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ " --"ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ " --"ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ " --"ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -198,34 +206,45 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪੁੱਛੋ" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਲਈ ਨਿੱਜੀ ਟਿਕਟ ਦੀ ਬੇਨਤੀ ਕਰੋ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "ਅਧੂਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਲਈ ਸੂਚਿਤ ਕਰੋ" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -252,14 +271,14 @@ msgstr "ਬਾਰੇ" - msgid "Quit" - msgstr "ਨਿੱਕਲੋ" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -271,11 +290,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -289,24 +308,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ਚੋਣਾਂ]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM ਨੂੰ ਕਲਾਂਈਟ uid ਤੌਰ ਤੇ ਵਰਤੋ" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ਵਿੱਚ ਲਾਗ ਕਰੋ" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" - -@@ -314,60 +334,50 @@ msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" - msgid "Unknown error" - msgstr "ਅਣਜਾਣੀ ਗਲਤੀ" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ਪਰਮਾਣਤ ਨਹੀਂ" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ਸੁਧਾਰ ਲਈ ਸਮੱਸਿਆ ਨਹੀਂ ਵੇਖ ਸਕਦਾ" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" -+msgid "'%s' element can't be modified" -+msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ਦਾ ਆਕਾਰ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ਕੋਈ ਸਮੱਸਿਆ ਸਪੇਸ ਨਹੀਂ ਬਚੀ" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ '%s' ਤੋਂ ਹਟਾ ਨਹੀਂ ਸਕਦਾ" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -377,12 +387,12 @@ msgstr "" - "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ " - "ਰਿਹਾ।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM ਸਕਿੰਟਾਂ ਦੀ ਕਾਰਵਾਈ ਤੋਂ ਬਾਅਦ ਬੰਦ ਕਰੋ" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ ਤੇ ਚਲਾਉਣਾ ਜਰੂਰੀ ਹੈ।" - -@@ -408,18 +418,22 @@ msgstr "ਡੈਮਨਾਈਜ਼ ਨਾ ਕਰੋ" - msgid "Log to syslog even with -d" - msgstr "syslog ਵਿੱਚ ਭਾਵੇਂ -d ਚੋਣ ਨਾਲ ਲਾਗ ਕਰੋ" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT ਨੂੰ DIR ਉੱਪ ਚਲਾਓ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ਯੂਜ਼ਰ ਨੂੰ ਸਿੱਧਾ ਸੰਪਰਕ ਕਰੋ" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -461,75 +475,76 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਕੈਚੇ ਆਕਾਰ MiB ਵਿੱਚ। ਮੂਲ ਹੈ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -541,68 +556,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -626,18 +641,26 @@ msgstr "chown '%s' ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਸੂਚੀ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -684,7 +707,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s ਲਈ ਬੈਕਟਰੇਸ ਪਾਰਸਿੰਗ ਫੇਲ ਹੋਈ ਹੈ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ਕਰੈਸ਼ ਥਰੈੱਡ ਨਹੀਂ ਲੱਭਿਆ" - -@@ -791,7 +814,7 @@ msgid "Oops text extracted successfully" - msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -799,6 +822,38 @@ msgstr "" - "ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\n" - "ਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -916,7 +971,36 @@ msgstr "ਗੈਰ-ਮੌਜੂਦ debuginfo ਫਾਇਲ: {0}" - msgid "All debuginfo files are available" - msgstr "ਸਭ debuginfo ਫਾਇਲਾਂ ਉਪਲੱਬਧ ਹਨ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -926,7 +1010,7 @@ msgstr "" - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1157,7 +1241,8 @@ msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation ਵਾਂਗ, DumpLocation ਨੂੰ abrt.conf ਵਿੱਚ ਨਿਰਧਾਰਤ ਕੀਤਾ ਹੈ" - -@@ -1167,16 +1252,18 @@ msgstr "ਅਲੱਗ ਕੀਤੀ ਹੋਈ ਜਾਣਕਾਰੀ PROBLEM ਵਿ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਪੜ੍ਹਨਯੋਗ ਬਣਾਓ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "1 ਪ੍ਰਤੀ ਸੈਕਿੰਡ ਨਾਲ ਥਰੌਟਲ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣਾ " - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ ਅਤੇ ਬਾਹਰ ਜਾਓ" - -@@ -1185,9 +1272,13 @@ msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕ - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "ਮੁਸ਼ਕਿਲ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦਾ: ਇੱਕ ਤੋਂ ਜਿਆਦਾ oops ਲੱਭੀਆਂ" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1206,6 +1297,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1229,11 +1321,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1247,16 +1341,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1264,18 +1361,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1294,14 +1394,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1310,12 +1413,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1325,58 +1474,62 @@ msgstr "" - "\n" - "Xorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "ਮਿਲੇ ਕਰੈਸ਼ ਡਾਟੇ ਨੂੰ ਸਟੈਂਡਰਡ ਆਊਟਪੁੱਟ ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "ਹਰੇਕ ਕਰੈਸ਼ ਲਈ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1903,7 +2056,7 @@ msgid "Sleeping for %d seconds" - msgstr "%d ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1912,7 +2065,7 @@ msgstr "" - "ਮੁਸ਼ਕਲਾਂ ਕਰਨਲ ਪਰਬੰਧਕਾਂ ਦੁਆਰਾ ਠੀਕ ਹੋਣ ਯੋਗ ਨਹੀਂ ਹਨ।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1920,7 +2073,7 @@ msgstr "" - "ਇੱਕ ਕਰਨਲ ਮੁਸ਼ਕਲ ਵਾਪਰੀ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਹਾਰਡਵੇਅਰ ਅਸਮਰਥਿਤ ਹੈ, ਇਸ ਲਈ ਕਰਨਲ ਪਰਬੰਧਕ ਇਸ " - "ਮੁਸ਼ਕਲ ਨੂੰ ਠੀਕ ਕਰਨ ਤੋਂ ਅਸਮਰੱਥ ਹਨ।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1929,24 +2082,24 @@ msgstr "" - "ਇੱਕ ਕਰਨਲ ਸਮੱਸਿਆ ਆਈ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਕਰਨਲ ਖਰਾਬ (flags:%s) ਹੋ ਗਿਆ ਹੈ। ਕਰਨਲ ਪਰਬੰਧਕ " - "ਖਰਾਬੀ ਬਾਰੇ ਪੜਤਾਲ ਕਰਨ ਤੋਂ ਅਸਮਰਥ ਹਨ।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "ਟੈਂਟਡ ਮੋਡੀਊਲ: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ਬੱਗ ids ਦੀ ਸੂਚੀ" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ਇੱਕ ਬੋਧੀ ਸਰਵਰ url ਦਿਓ" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ਇੱਕ ਰੀਲੀਜ਼ ਦਿਓ" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1956,20 +2109,20 @@ msgstr "" - "\n" - "ਬੋਧੀ ਸਰਵਰ ਤੇ ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜੋ" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ਇਸ ਪੈਕੇਜ ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਨਹੀਂ ਲੱਭਿਆ" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "ਪੈਕੇਜ ਦਾ ਲੋਕਲ ਵਰਜਨ ਉਪਲੱਬਧ ਅੱਪਡੇਟਾਂ ਤੋਂ ਨਵਾਂ ਹੈ" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1995,69 +2148,70 @@ msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਨੂੰ ਛਾਪੋ" - msgid "Delete files with found oopses" - msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਵਾਲੀਆਂ ਫਾਈਲਾਂ ਮਿਟਾਓ" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ਇੱਕ ਤੋਂ ਜਿਆਦਾ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀਆਂ ਪਛਾਣਦਾ ਹੈ" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ਵਰਤੋਂ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਹਟਾਓ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR ਵਿੱਚ ਸਮੱਸਿਆ ਡਾਟੇ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਿੰਟ ਕਰੋ" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ਹਾਲੀਆ ਹੋਏ ਕਰੈਸ਼ਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "ਸਿਰਫ ਨਾ ਸੂਚਿਤ ਕੀਤੀਆਂ ਮੁਸ਼ਕਲਾਂ ਹੀ ਸੂਚੀਬੱਧ ਕਰੋ" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "ਵਿਸਥਾਰ ਰਿਪੋਰਟ ਵੇਖਾਓ" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2068,51 +2222,61 @@ msgstr "" - "reporting enabled' ਨੂੰ\n" - "ਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ਇਸ ਤੋਂ ਵੱਡਾ ਪਾਠ ਸੰਖੇਪਿਤ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "ਕੋਈ '%s' ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸੁਨੇਹੇ ਦੇ ਸਿਰਫ਼ ਮੁਸ਼ਕਿਲਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "ਸਿਰਫ਼ ਸਮਾਂ-ਮੋਹਰ ਤੋਂ ਵੀ ਹਾਲੀਆ ਹੋਈਆਂ ਮੁਸ਼ਕਿਲਾਂ ਹੀ ਛਾਪੋ" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ਨੇ %u ਸਮੱਸਿਆ(ਸਮੱਸਿਆਵਾਂ) ਲੱਭੀਆਂ ਹਨ। ਜਿਆਦਾ ਜਾਣਕਾਰੀ ਲਈ ਚਲਾਓ: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2121,24 +2285,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/pl.po b/po/pl.po -index cf77ca9..e68bfe1 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -10,18 +10,18 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-17 03:32-0400\n" -+"PO-Revision-Date: 2015-08-28 12:31-0400\n" - "Last-Translator: Piotr Drąg \n" - "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/pl/)\n" - "Language: pl\n" - "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " - "|| n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,41 +31,41 @@ msgstr "Zgłaszanie problemów" - msgid "View and report application crashes" - msgstr "Wyświetlanie i zgłaszanie awarii aplikacji" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "Nie można zmienić właściciela \"%s\"" -+msgstr "Nie można zmienić właściciela „%s”" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" -+msgstr "Nie można otworzyć katalogu do zapisania „%s”" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nie można zamknąć powiadomienia: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ups." - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Zgłoś" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Uruchom ponownie" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "Program %s uległ awarii. Problem został automatycznie zgłoszony." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -74,8 +74,8 @@ msgstr "" - "Program %s uległ awarii. Problem zostanie zgłoszony po uzyskaniu dostępu do " - "Internetu." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -84,7 +84,7 @@ msgstr "" - "Program %s uległ awarii. Proszę skontaktować się z programistami programu, " - "aby zgłosić problem." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -93,13 +93,13 @@ msgstr "" - "Program %s uległ awarii. Prosimy o wysłanie zgłoszenia, aby pomóc w " - "naprawieniu problemu." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "Wystąpił problem w składniku. Został on automatycznie zgłoszony." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -107,7 +107,7 @@ msgstr "" - "Wystąpił problem w składniku. Zostanie on zgłoszony po uzyskaniu dostępu do " - "Internetu." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -115,38 +115,49 @@ msgstr "" - "Wystąpił problem. Prosimy o wysłanie zgłoszenia, aby pomóc w jego " - "naprawieniu." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nie można wyświetlić powiadomienia: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "Nie można odczytać z kanału GIO: \"%s\"" -+msgstr "Nie można odczytać z kanału GIO: „%s”" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nie można ustawić kodowania na kanale GIO: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nie można włączyć trybu nieblokowania dla kanału GIO: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" --"& [-v] [KATALOG]...\n" -+"& [-v] [KATALOG]…\n" - "\n" - "Aplet powiadamiający użytkownika o nowych problemach wykrytych przez program " - "ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Pytanie przed przechwytywaniem katalogu" -@@ -168,13 +179,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest " --"działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może " --"tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut " --"do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał " --"zrzuty core bez pytania." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -222,10 +230,6 @@ msgstr "" - "włączone jest Skrócone zgłaszanie." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Pytanie przed wysłaniem zrzutu core" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -233,15 +237,15 @@ msgstr "" - "Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie " - "błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Żądanie prywatnych zgłoszeń dla prywatnych informacji" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Powiadamianie o niepełnych problemach" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -251,6 +255,22 @@ msgstr "" - "jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program " - "ABRT nie będzie umożliwiał wysłania takich problemów." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "Za_mknij" -@@ -276,7 +296,7 @@ msgstr "O programie" - msgid "Quit" - msgstr "Zakończ" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -286,7 +306,7 @@ msgstr "" - "\n" - "Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -298,11 +318,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Katalog problemu" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Plik konfiguracji" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Używa tego katalogu jako katalogu głównego pakietu RPM" - -@@ -318,24 +338,25 @@ msgstr "& [-v] -d KATALOG\n" - msgid "Root directory for running container commands" - msgstr "Katalog główny do wykonywania poleceń kontenera" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcje]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Używa NUMERU jako UID klienta" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Przekazuje komunikaty do dziennika systemowego" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Dodaje nazwy programów do dziennika" - -@@ -343,77 +364,67 @@ msgstr "Dodaje nazwy programów do dziennika" - msgid "Unknown error" - msgstr "Nieznany błąd" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "\"%s\" nie jest prawidłowym katalogiem problemu" -+msgid "'%s' is not a valid element name" -+msgstr "„%s” nie jest prawidłową nazwą elementu" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Nie można modyfikować elementu \"%s\"" -+msgid "'%s' is not a valid problem directory" -+msgstr "„%s” nie jest prawidłowym katalogiem problemu" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Brak upoważnienia" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nie można uzyskać dostępu do problemu, aby go zmodyfikować" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Nie można modyfikować elementu „%s”" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można " - "znaleźć więcej informacji." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Nie można uzyskać dostępu do problemu, aby go odczytać" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "\"%s\" nie jest prawidłową nazwą elementu" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "Nie można uzyskać rozmiaru \"%s\"" -+msgstr "Nie można uzyskać rozmiaru „%s”" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Brak miejsca na problemy" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" -- --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -+msgstr "Nie można usunąć elementu „%s” z katalogu problemów „%s”" - --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca " -+"Nazwa „%s” została utracona. Proszę sprawdzić, czy inna usługa będąca " - "właścicielem nazwy jest uruchomiona.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Kończy działanie po LICZBIE sekund nieaktywności" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Ten program musi być uruchamiany jako root." - -@@ -433,29 +444,33 @@ msgstr "" - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "Bez tworzenia demona" -+msgstr "Bez tworzenia usługi" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" - msgstr "" - "Przekazuje komunikaty do dziennika systemowego, nawet jeśli podano opcję -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ZDARZENIE KATALOG..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Wykonuje ZDARZENIE w KATALOGU" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikuje się bezpośrednio z użytkownikiem" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" --msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum \"%s\"" -+msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum „%s”" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -490,88 +505,89 @@ msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" - msgid "Maximal cache size in MiB. Default is " - msgstr "Maksymalny rozmiar pamięci podręcznej w MiB. Domyślnie wynosi" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Wyłącza uwierzytelnianie" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nazwa użytkownika Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Hasło Red Hat Support, jeśli nie podano, to użytkownik zostanie o nie " - "zapytany" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Ścieżki lub typ certyfikatu SSL uReport" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Należy także podać --username dla opcji --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Można użyć tylko --username lub --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Można użyć tylko --username lub --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Można użyć tylko --anonymous lub --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Nieprawidłowa liczba parametrów" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Nieznana wartość opcji: \"%s\"\n" -+msgstr "Nieznana wartość opcji: „%s”\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Hasło:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Nie można kontynuować bez hasła\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Automatyczne zgłaszanie uwierzytelnione przez HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Automatyczne zgłaszanie uwierzytelnione przez klienta SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonimowe automatyczne zgłaszanie" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -586,76 +602,76 @@ msgstr "" - "\n" - " -v - Więcej informacji\n" - " -d - Usuwa wysłane archiwum\n" --" KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo " -+" KATALOG_SZPULI_ABRT — Katalog, do którego rozpakowywane są prawidłowo " - "wysłane archiwa\n" --" KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane " -+" KATALOG_WYSYŁANIA — Katalog, w którym przechowywane są wysłane " - "archiwa\n" --" NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" -+" NAZWA_PLIKU — Nazwa pliku wysłanego archiwum\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "Nie jest katalogiem: \"{0}\"" -+msgstr "Nie jest katalogiem: „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "Pomijanie: \"{0}\" (rozpoczyna się od ukośnika)" -+msgstr "Pomijanie: „{0}” (rozpoczyna się od ukośnika)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "Pomijanie: \"{0}\" (rozpoczyna się od kropki)" -+msgstr "Pomijanie: „{0}” (rozpoczyna się od kropki)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "Pomijanie: \"{0}\" (zawiera ..)" -+msgstr "Pomijanie: „{0}” (zawiera ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "Pomijanie: \"{0}\" (zawiera spację)" -+msgstr "Pomijanie: „{0}” (zawiera spację)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "Pomijanie: \"{0}\" (zawiera tabulację)" -+msgstr "Pomijanie: „{0}” (zawiera tabulację)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Nie można zmienić katalogu na \"{0}\"" -+msgstr "Nie można zmienić katalogu na „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "Nieznany typ pliku: \"{0}\"" -+msgstr "Nieznany typ pliku: „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" --msgstr "Nie można utworzyć katalogu roboczego w \"{0}\"" -+msgstr "Nie można utworzyć katalogu roboczego w „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" --msgstr "Nie można przenieść \"{0}\" do \"{1}\"" -+msgstr "Nie można przenieść „{0}” do „{1}”" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" --msgstr "Nie można skopiować \"{0}\" do \"{1}\"" -+msgstr "Nie można skopiować „{0}” do „{1}”" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" --msgstr "Błąd sprawdzania w \"{0}\"" -+msgstr "Błąd sprawdzania w „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" --msgstr "Rozpakowywanie \"{0}\"" -+msgstr "Rozpakowywanie „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" --msgstr "Nie można utworzyć katalogu \"{0}\"" -+msgstr "Nie można utworzyć katalogu „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" --msgstr "Nie można rozpakować \"{0}\"" -+msgstr "Nie można rozpakować „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" --msgstr "Pomyślnie przetworzono \"{0}\"" -+msgstr "Pomyślnie przetworzono „{0}”" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 -@@ -670,33 +686,41 @@ msgstr "Nie można połączyć z systemową magistralą D-Bus: %s" - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "Nie można zmienić właściciela \"%s\": %s" -+msgstr "Nie można zmienić właściciela „%s”: %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" - msgstr "Usunięcie katalogu problemu się nie powiodło: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nie można uzyskać listy problemów z abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Nie można sprawdzić przez abrt-dbus, czy element istnieje: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "Nie można utworzyć pliku tymczasowego \"%s\"" -+msgstr "Nie można utworzyć pliku tymczasowego „%s”" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -704,15 +728,15 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"Nie można zapisać do \"%s\". Problem \"%s\" nie zostanie usunięty z " --"zignorowanych problemów \"%s\"" -+"Nie można zapisać do „%s”. Problem „%s” nie zostanie usunięty z " -+"zignorowanych problemów „%s”" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" - msgstr "" --"Nie można zmienić nazwy \"%s\" na \"%s\". Usunięcie problemu \"%s\" się nie " -+"Nie można zmienić nazwy „%s” na „%s”. Usunięcie problemu „%s” się nie " - "powiodło" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 -@@ -735,9 +759,9 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "Przetworzenie wyjątku nie powiodło się dla %s" -+msgstr "Przetworzenie wyjątku się nie powiodło dla %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Nie odnaleziono wątku awarii" - -@@ -754,7 +778,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "Analizowanie zrzutu core \"%s\"" -+msgstr "Analizowanie zrzutu core „%s”" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format -@@ -806,7 +830,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "Nie wczytano modułu \"%s\" - ta awaria nie zostanie zgłoszona" -+msgstr "Nie wczytano modułu „%s” — ta awaria nie zostanie zgłoszona" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -838,13 +862,13 @@ msgstr "Nie można przetworzyć {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "Nie można wypakować komunikatu oops: \"{0}\"" -+msgstr "Nie można wypakować komunikatu oops: „{0}”" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" - msgstr "Pomyślnie wypakowano tekst awarii oops" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -852,6 +876,38 @@ msgstr "" - "Dziennik jądra wskazuje na wykrycie błędów sprzętowych.\n" - "Prawdopodobnie nie jest to problem oprogramowania.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -939,8 +995,8 @@ msgid "" - msgstr "" - "Użycie: %s [-vy] [--ids=PLIK_IDENTYFIKATORÓW_BUDOWANIA] [--pkgmgr=(yum|dnf)]\n" - " [--tmpdir=KATALOG_TYMCZASOWY] [--cache=KATALOG_PAMIĘCI_PODRĘCZNEJ[:" --"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2...]] [--size_mb=ROZMIAR]\n" --" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]...]\n" -+"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2…]] [--size_mb=ROZMIAR]\n" -+" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]…]\n" - "\n" - "Instaluje pakiety debuginfo dla wszystkich identyfikatorów budowania\n" - "wymienionych w PLIKU_IDENTYFIKATORÓW_BUDOWANIA w " -@@ -952,13 +1008,13 @@ msgstr "" - "Odczytuje konfigurację z pliku /etc/abrt/plugins/CCpp.conf\n" - "\n" - " -v Więcej komunikatów\n" --" -y Nieinteraktywnie, przyjmuje \"Tak\" na wszystkie pytania\n" -+" -y Nieinteraktywnie, przyjmuje „Tak” na wszystkie pytania\n" - " --ids Domyślnie: identyfikatory_budowania\n" - " --tmpdir Domyślnie: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "LOSOWY_PRZYROSTEK\n" - " --cache Domyślnie: /var/cache/abrt-di\n" - " --size_mb Domyślnie: 4096\n" --" --pkgmgr Domyślnie: \"PackageManager\" z pliku CCpp.conf lub \"dnf\"\n" -+" --pkgmgr Domyślnie: „PackageManager” z pliku CCpp.conf lub „dnf”\n" - " -e,--exact Pobiera tylko podane pliki\n" - " --repo Wzorzec do użycia podczas wyszukiwania repozytoriów.\n" - " Domyślnie: *debug*\n" -@@ -982,7 +1038,7 @@ msgstr "{0} plików debuginfo nie jest zainstalowanych" - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Nieprawidłowa konfiguracja dodatku CCpp, nieobsługiwany menedżer pakietów: " --"\"%s\"" -+"„%s”" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -996,17 +1052,46 @@ msgstr "Brak pliku debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Wszystkie pliki debuginfo są dostępne" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - "Wysłać zrzut core (może on zawierać prywatne dane)? Jeśli wybrana zostanie " --"odpowiedź \"nie\", to wyjątek stosu zostanie utworzony lokalnie (może to " -+"odpowiedź „nie”, to wyjątek stosu zostanie utworzony lokalnie (może to " - "spowodować pobranie dużej ilości danych)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1022,8 +1107,7 @@ msgid "" - "SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" --"& [-v] [-d ROZMIAR:KATALOG]... [-f ROZMIAR:KATALOG]... [-p KATALOG] [PLIK]..." --"\n" -+"& [-v] [-d ROZMIAR:KATALOG]… [-f ROZMIAR:KATALOG]… [-p KATALOG] [PLIK]…\n" - "\n" - "Usuwa katalogi (-d) lub pliki (-f) problemów w KATALOGACH, dopóki nie są " - "mniejsze niż ROZMIAR.\n" -@@ -1044,12 +1128,12 @@ msgstr "Zachowuje ten katalog" - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "Nie można uruchomić \"%s\", komunikat błędu: \"%s\"" -+msgstr "Nie można uruchomić „%s”, komunikat błędu: „%s”" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "Nie jest liczbą w \"%s\"" -+msgstr "Nie jest liczbą w „%s”" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format -@@ -1205,7 +1289,7 @@ msgid "" - "\n" - "Watch log file FILE, run PROG when it grows or is replaced" - msgstr "" --"& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n" -+"& [-vs] [-F POTOK]… PLIKI PROGRAM [PARAMETRY]\n" - "\n" - "Obserwuje PLIK dziennika, wykonuje PROGRAM, kiedy plik się powiększy lub " - "zostanie zastąpiony" -@@ -1241,7 +1325,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "To samo, co -d DumpLocation, DumpLocation jest określone w pliku abrt.conf" -@@ -1252,16 +1337,18 @@ msgstr "Zapisuje wydobytą informację w PROBLEMIE" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Ustawia katalog problemu jako do odczytu dla każdego" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Przełącza tworzenie katalogów problemów na jeden na sekundę" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działanie" - -@@ -1270,10 +1357,13 @@ msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działan - msgid "Failed to compile regex" - msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1296,6 +1386,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Zainicjowanie obserwacji systemd-journal się nie powiodło" - -@@ -1332,11 +1423,13 @@ msgstr "Tworzy nowy katalog problemu w KATALOGU dla każdego zrzutu core" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Rozpoczyna odczytywanie systemd-journal z położenia KURSORA" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Rozpoczyna odczytywanie systemd-journal od końca" - -@@ -1350,6 +1443,7 @@ msgstr "To samo, co -t INT, INT jest określone w pliku plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Podąża za systemd-journal od ostatnio widzianego położenia (jeśli jest " -@@ -1357,11 +1451,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Należy podać -c KURSOR lub -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Nie można otworzyć systemd-journal" - -@@ -1369,18 +1465,21 @@ msgstr "Nie można otworzyć systemd-journal" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Nie można filtrować tylko danych systemd-coredump z systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Nie można przejść do końca dziennika" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "Ustawienie kursora systemd-journal \"%s\" się nie powiodło" -+msgstr "Ustawienie kursora systemd-journal „%s” się nie powiodło" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Nie można odczytać danych dziennika." - -@@ -1412,28 +1511,77 @@ msgstr "" - "Ostatnio widziane położenie jest zapisywane w " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Odczytuje pliki dziennika ze wszystkich komputerów" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Odczytuje wszystkie pliki dziennika z katalogu w ŚCIEŻCE" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Nie można zainicjować systemd-journal w katalogu „%s”" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Nie można filtrować tylko danych jądra z systemd-journal" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "Rozpoczęcie obserwacji od kursora \"%s\" się nie powiodło" -+msgstr "Rozpoczęcie obserwacji od kursora „%s” się nie powiodło" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1443,70 +1591,74 @@ msgstr "" - "\n" - "Wydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Wyświetla odnalezione dane awarii w standardowym wyjściu" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Nie można zapisać położenia obserwacji dziennika" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Nie można zapisać położenia obserwacji dziennika: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" --"Położenie obserwacji dziennika nie zostanie przywrócone: plik \"%s\" nie " -+"Położenie obserwacji dziennika nie zostanie przywrócone: plik „%s” nie " - "istnieje" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" --msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku \"%s\"" -+msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku „%s”" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" --"Nie można przywrócić położenia obserwacji dziennika: ścieżka \"%s\" nie jest " -+"Nie można przywrócić położenia obserwacji dziennika: ścieżka „%s” nie jest " - "zwykłym plikiem" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" --"Nie można przywrócić położenia obserwacji dziennika: plik \"%s\" przekracza " -+"Nie można przywrócić położenia obserwacji dziennika: plik „%s” przekracza " - "ograniczenie rozmiaru do %d B" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Nie można przywrócić położenia obserwacji dziennika: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - "Nie można przywrócić położenia obserwacji dziennika: nie można odczytać " --"całego pliku \"%s\"" -+"całego pliku „%s”" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "Przeniesienie dziennika do kursora z pliku \"%s\" się nie powiodło" -+msgstr "Przeniesienie dziennika do kursora z pliku „%s” się nie powiodło" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" -@@ -1529,7 +1681,7 @@ msgstr "Nie można utworzyć tymczasowego pliku w" - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "Nie można wykonać \"%s\"" -+msgstr "Nie można wykonać „%s”" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1537,7 +1689,9 @@ msgstr "Nie można wykonać \"%s\"" - #: ../src/plugins/abrt-retrace-client.c:842 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d" --msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d" -+msgstr "" -+"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " -+"%d" - - #: ../src/plugins/abrt-retrace-client.c:223 - #: ../src/plugins/abrt-retrace-client.c:412 -@@ -1567,8 +1721,8 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" --"Serwer ponownego śledzenia nie może przetworzyć pakietu \"%s.%s\".\n" --"Czy jest on częścią oficjalnych repozytoriów \"%s\"?" -+"Serwer ponownego śledzenia nie może przetworzyć pakietu „%s.%s”.\n" -+"Czy jest on częścią oficjalnych repozytoriów „%s”?" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" -@@ -1586,7 +1740,7 @@ msgstr "Serwer odrzucił żądanie." - #: ../src/plugins/abrt-retrace-client.c:500 - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." --msgstr "\"%s\" musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." -+msgstr "„%s” musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1604,7 +1758,7 @@ msgstr "Serwer nie obsługuje pakietów tar skompresowanych za pomocą xz." - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "Wydanie \"%s\" nie jest obsługiwane przez serwer ponownego śledzenia." -+msgstr "Wydanie „%s” nie jest obsługiwane przez serwer ponownego śledzenia." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." -@@ -1648,12 +1802,12 @@ msgstr "Wysyłanie %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "Odczytanie z potoku nie powiodło się" -+msgstr "Odczytanie z potoku się nie powiodło" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format - msgid "Failed to send data: NSS error %d (%s): %s" --msgstr "Wysłanie danych nie powiodło się: błąd NSS %d (%s): %s" -+msgstr "Wysłanie danych się nie powiodło: błąd biblioteki NSS %d (%s): %s" - - #: ../src/plugins/abrt-retrace-client.c:745 - msgid "Upload successful" -@@ -1710,14 +1864,16 @@ msgstr "Stan zadania: %s\n" - #: ../src/plugins/abrt-retrace-client.c:1053 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d." --msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d." -+msgstr "" -+"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " -+"%d." - - #: ../src/plugins/abrt-retrace-client.c:1170 - msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" --"Ponowne śledzenie nie powiodło się. Proszę spróbować ponownie później, a " -+"Ponowne śledzenie się nie powiodło. Proszę spróbować ponownie później, a " - "jeśli problem się utrzymuje, to proszę go zgłosić." - - #: ../src/plugins/abrt-retrace-client.c:1217 -@@ -1873,7 +2029,7 @@ msgid "" - "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " - ">(warning)</a>" - msgstr "" --"Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego <a " -+"Wpisanie „insecure” umożliwia użycie połączenia niezabezpieczonego <a " - "href=\"https://fedorahosted.org/abrt/wiki/" - "AbrtRetraceServerInsecureConnection\" >(ostrzeżenie)</a>" - -@@ -1891,7 +2047,7 @@ msgid "" - "executable's name. The result is saved as 'xsession_errors' element." - msgstr "" - "Skanuje plik ~/.xsession-errors i zapisuje te wiersze, które zawierają nazwę " --"pliku wykonywalnego. Wynik jest zapisywany jako element \"xsession_errors\"." -+"pliku wykonywalnego. Wynik jest zapisywany jako element „xsession_errors”." - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." -@@ -1900,7 +2056,7 @@ msgstr "Wystąpił błąd po stronie serwera." - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "Wystąpił błąd po stronie serwera w \"%s\"" -+msgstr "Wystąpił błąd po stronie serwera w „%s”" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" -@@ -1909,24 +2065,23 @@ msgstr "Wystąpił problem podczas łączenia z serwerem" - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "Wystąpił problem podczas łączenia z \"%s\"" -+msgstr "Wystąpił problem podczas łączenia z „%s”" - - #: ../src/plugins/https-utils.c:97 - #, c-format - msgid "Issuer certificate is invalid: '%s'." --msgstr "Certyfikat wystawcy jest nieprawidłowy: \"%s\"." -+msgstr "Certyfikat wystawcy jest nieprawidłowy: „%s”." - - #: ../src/plugins/https-utils.c:100 - #, c-format - msgid "Certificate is signed by an untrusted issuer: '%s'." --msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: \"%s\"." -+msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: „%s”." - - #: ../src/plugins/https-utils.c:103 - #, c-format - msgid "Certificate subject name '%s' does not match target host name '%s'." - msgstr "" --"Nazwa tematu certyfikatu \"%s\" nie pasuje do docelowej nazwy komputera " --"\"%s\"." -+"Nazwa tematu certyfikatu „%s” nie pasuje do docelowej nazwy komputera „%s”." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." -@@ -1935,40 +2090,40 @@ msgstr "Zdalny certyfikat wygasł." - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "Nie rozpoznano wystawcy certyfikatu: \"%s\"." -+msgstr "Nie rozpoznano wystawcy certyfikatu: „%s”." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "Otrzymano błędny certyfikat. Temat \"%s\", wydawca \"%s\"." -+msgstr "Otrzymano błędny certyfikat. Temat „%s”, wydawca „%s”." - - #: ../src/plugins/https-utils.c:149 - #, c-format - msgid "Failed to get slot 'PEM Token #0': %d." --msgstr "Uzyskanie gniazda \"PEM Token #0\" nie powiodło się: %d." -+msgstr "Uzyskanie gniazda „PEM Token #0” się nie powiodło: %d." - - #: ../src/plugins/https-utils.c:182 - #, c-format - msgid "Can't resolve host name '%s'. NSS error %d." --msgstr "Nie można rozwiązać nazwy komputera \"%s\". Błąd biblioteki NSS %d." -+msgstr "Nie można rozwiązać nazwy komputera „%s”. Błąd biblioteki NSS %d." - - #. Host exists, but has neither IPv4 nor IPv6?? - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "Nie można rozwiązać nazwy komputera \"%s\"." -+msgstr "Nie można rozwiązać nazwy komputera „%s”." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." --msgstr "Ustawienie trybu blokowania gniazda nie powiodło się." -+msgstr "Ustawienie trybu blokowania gniazda się nie powiodło." - - #: ../src/plugins/https-utils.c:213 - msgid "Failed to wrap TCP socket by SSL." --msgstr "Opakowanie gniazda TCP za pomocą SSL nie powiodło się." -+msgstr "Opakowanie gniazda TCP za pomocą SSL się nie powiodło." - - #: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." --msgstr "Włączenie powitania klienta do gniazda SSL nie powiodło się." -+msgstr "Włączenie powitania klienta do gniazda SSL się nie powiodło." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/https-utils.c:220 -@@ -1982,24 +2137,24 @@ msgstr "Włączenie TLS się nie powiodło." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "Ustawienie adresu URL w gnieździe SSL nie powiodło się." -+msgstr "Ustawienie adresu URL w gnieździe SSL się nie powiodło." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "Nie można połączyć z \"%s\"" -+msgstr "Nie można połączyć z „%s”" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "Ustawienia haka certyfikatu nie powiodło się." -+msgstr "Ustawienia haka certyfikatu się nie powiodło." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." --msgstr "Ustawienie wywołania zwrotnego powitania nie powiodło się." -+msgstr "Ustawienie wywołania zwrotnego powitania się nie powiodło." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "Przywrócenie powitania nie powiodło się." -+msgstr "Przywrócenie powitania się nie powiodło." - - #: ../src/plugins/https-utils.c:258 - #, c-format -@@ -2008,17 +2163,17 @@ msgstr "Ukończenie powitania SSL się nie powiodło: błąd biblioteki NSS %d." - - #: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." --msgstr "Zamknięcie gniazda SSL nie powiodło się." -+msgstr "Zamknięcie gniazda SSL się nie powiodło." - - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: \"%s\"" -+msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: „%s”" - - #: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." --msgstr "Pobieranie danych nie powiodło się: błąd NSS %d." -+msgstr "Pobieranie danych się nie powiodło: błąd biblioteki NSS %d." - - #: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." -@@ -2026,22 +2181,22 @@ msgstr "Błędnie sformatowana, urwana odpowiedź." - - #: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." --msgstr "Zainicjowanie biblioteki NSS nie powiodło się." -+msgstr "Zainicjowanie biblioteki NSS się nie powiodło." - - #: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." --msgstr "Zainicjowanie modułu zabezpieczeń nie powiodło się." -+msgstr "Zainicjowanie modułu zabezpieczeń się nie powiodło." - - #: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." --msgstr "Zamknięcie biblioteki NSS nie powiodło się." -+msgstr "Zamknięcie biblioteki NSS się nie powiodło." - - #: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" - msgstr "Usypianie na %d sekund" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2049,7 +2204,7 @@ msgstr "" - "Wystąpił problem jądra z powodu uszkodzonego BIOS-u. Tego rodzaju problemy " - "nie mogą zostać naprawione przez opiekunów jądra." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2057,7 +2212,7 @@ msgstr "" - "Wystąpił problem jądra, ale sprzęt jest nieobsługiwany, więc opiekunowie " - "jądra nie mogą go naprawić." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2066,48 +2221,48 @@ msgstr "" - "Wystąpił problem jądra, ale obecne jądro jest zanieczyszczone (flagi: %s). " - "Opiekunowie jądra nie są w stanie diagnozować zanieczyszczonych raportów." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Zanieczyszczone moduły: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista identyfikatorów błędów" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Podaje adres URL serwera Bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Podaje wydanie" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" --"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,...] | NAZWA-" --"PAKIETU) [NAZWA-PAKIETU]... \n" -+"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,…] | NAZWA-PAKIETU) " -+"[NAZWA-PAKIETU]… \n" - "\n" - "Wyszukuje aktualizacje na serwerze Bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Wyszukiwanie aktualizacji" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nie odnaleziono aktualizacji dla tego pakietu" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokalna wersja pakietu jest nowsza niż dostępne aktualizacje" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2122,7 +2277,7 @@ msgid "" - "\n" - "Scans files for split oops message. Can print and/or delete them." - msgstr "" --"& [-v] [-od] PLIK...\n" -+"& [-v] [-od] PLIK…\n" - "\n" - "Skanuje pliki w poszukiwaniu rozdzielonych komunikatów awarii. Może je " - "wyświetlić i/lub usunąć." -@@ -2135,66 +2290,66 @@ msgstr "Wyświetla odnalezione awarie" - msgid "Delete files with found oopses" - msgstr "Usuwa pliki z odnalezionymi awariami" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "\"%s\" określa więcej niż jeden katalog problemu" -+msgstr "„%s” określa więcej niż jeden katalog problemu" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Użycie: abrt-cli [--version] POLECENIE [KATALOG]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Wyświetla listę problemów [w KATALOGACH]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Usuwa KATALOG problemu" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizuje i zgłasza dane problemu w KATALOGU" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Wyświetla informacje o KATALOGU" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Wyświetla liczbę ostatnich awarii" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Przetwarza wiele problemów" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" --msgstr "" --"Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" -+msgstr "Polecenie „abrt-cli POLECENIE --help” wyświetli więcej informacji" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opcje]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Wyświetla listę niezgłoszonych problemów" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Wyświetla szczegółowe zgłoszenie" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Wyświetla tylko problemy nowsze niż podany czas" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Wyświetla tylko problemy starsze niż podany czas" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2203,52 +2358,62 @@ msgid "" - msgstr "" - "Funkcja automatycznego zgłaszania jest wyłączona. Proszę rozważyć włączenie " - "jej przez wydanie polecenia\n" --"\"abrt-auto-reporting enabled\" jako użytkownik z uprawnieniami roota\n" -+"„abrt-auto-reporting enabled” jako użytkownik z uprawnieniami roota\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." --msgstr "& info [opcje] KATALOG..." -+msgstr "& info [opcje] KATALOG…" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Tekst większy niż to będzie wyświetlany skrócony" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "Katalog problemu \"%s\" nie istnieje" -+msgstr "Katalog problemu „%s” nie istnieje" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Wyświetla tylko liczbę awarii, bez żadnego komunikatu" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Wyświetla tylko problemy nowsze niż podany czas" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: " - "abrt-cli list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [opcje] KATALOG..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" --msgstr "Usuwanie \"%s\"" -+msgstr "Usuwanie „%s”" -+ -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [opcje] KATALOG…" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" - - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" -@@ -2258,24 +2423,179 @@ msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Działania: usuń (rm), zgłoś (e), informacje (i), pomiń (s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "Zgłaszanie \"%s\"" -+msgstr "Zgłaszanie „%s”" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Aby przejść do następnego problemu, proszę nacisnąć klawisz Enter:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Bez parametru --since przejdzie przez wszystkie wykryte problemy." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Wybiera tylko problemy wykryte po podanym czasie" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -@@ -2334,7 +2654,7 @@ msgid "" - "'gconf_subtree' element." - msgstr "" - "Wykonuje polecenie gconftool-2 --recursive-list /apps/plik-wykonywalny i " --"zapisuje wynik jako element \"gconf_subtree\"." -+"zapisuje wynik jako element „gconf_subtree”." - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" -diff --git a/po/pt.po b/po/pt.po -index 9ce2415..91c18d3 100644 ---- a/po/pt.po -+++ b/po/pt.po -@@ -12,126 +12,133 @@ - # Pedro Marques Daniel , 2013 - # Ricardo Pinto , 2012 - # Rui Gouveia , 2011, 2012 -+# Manuela Silva , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-08-17 08:03-0400\n" -+"Last-Translator: Manuela Silva \n" - "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/" - "language/pt/)\n" - "Language: pt\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Comunicação de Problema" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Ver e reportar craches da aplicação" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Não é possível tomar posse de '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Não é possível abrir a diretoria para gravar '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Não é possível fechar a notificação: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Ups!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Relatório" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Reiniciar" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Nós pedimos desculpa, ocorreu um problema num componente. O problema foi " -+"reportado automaticamente." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Nós pedimos desculpa, ocorreu um problema num componente. O problema será " -+"reportado assim que a Internet estiver disponível." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Nós pedimos desculpa, ocorreu um problema num componente. Se desejar ajudar " -+"a resolver o problema, por favor, envie um relatório." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Não é possível mostrar a notificação: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Não é possível ler do canal 'gio': '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Não é posssível definir a codificação no canal 'gio': %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -142,13 +149,24 @@ msgstr "" - "Objecto que notifica o utilizador quando novos problemas são detectados pelo " - "ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Enviar automaticamente uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" -@@ -163,7 +181,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -196,30 +216,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -228,7 +260,7 @@ msgstr "_Fechar" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "_Predefiniçoes" -+msgstr "_Predefinições" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:116 -@@ -249,14 +281,14 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Sair" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -266,13 +298,13 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "Directório de problemas" -+msgstr "Diretoria de Problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" --msgstr "Ficheiro de configuração" -+msgstr "Ficheiro de Configuração" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -286,101 +318,93 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opções]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilizar NUM como uid do cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registar no syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" --msgstr "Adicionar nomes de programa aos registos" -+msgstr "Adicionar nomes de programa ao registo" - - #: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" - msgstr "Erro desconhecido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' não é um directório de problema válido" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' não é um nome de elemento válido" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' elemento não pode ser modificado" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' não é um diretoria de problemas válida" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Não Autorizado" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Não é possível aceder ao problema para modificação" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' não é um nome de elemento válido" -+msgid "'%s' element can't be modified" -+msgstr "'%s' elemento não pode ser modificado" -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Não é possível obter o tamanho do '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" -- --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" - msgstr "" -+"Não é possível eliminar o elemento '%s' da diretoria de problemas '%s'" - --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"O nome '%s' foi perdido, por favor verifique se outro serviço com o mesmo " --"nome não está a correr.\n" -+"O nome '%s' foi perdido, por favor, verifique se outro serviço com o mesmo " -+"nome não está em execução.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "Sair depois de NUM segundos de inactividade" -+msgstr "Sair depois de NUM segundos de inatividade" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa tem que ser executado como root." - -@@ -406,20 +430,24 @@ msgstr "Não enviar para segundo plano" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" --msgstr "Registar para o syslog mesmo com o -d" -+msgstr "Registar para o syslog, mesmo com o -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "Executa EVENT no DIR" -+msgstr "Executar EVENT no DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -439,6 +467,7 @@ msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:281 -+#, fuzzy - msgid "Daemize" - msgstr "Daemize" - -@@ -451,73 +480,74 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Desativa a autenticação" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Senha:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Não é possível continuar sem a senha\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -529,75 +559,75 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Não é uma diretoria: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Não é possível alterar a diretoria para '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "" -+msgstr "Tipo de ficheiro desconhecido: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 - msgid "Generating backtrace" --msgstr "Gerando o backtrace" -+msgstr "A gerar backtrace" - - #: ../src/lib/problem_api_dbus.c:42 - #, c-format -@@ -605,27 +635,35 @@ msgid "Can't connect to system DBus: %s" - msgstr "Não é possível ligar ao DBus do sistema: %s" - - #: ../src/lib/problem_api_dbus.c:68 --#, c-format -+#, fuzzy, c-format - msgid "Can't chown '%s': %s" - msgstr "Não é possível fazer chown '%s': %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" --msgstr "Falha ao apagar o directório de problema: %s" -+msgstr "Falha ao apagar a diretoria de problemas: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "Não é possível obter a lista do problema a partir do abrt-dbus: %s" -+msgstr "Não é possível obter a lista de problemas de abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Não é possível obter os dados do problema de abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -649,6 +687,7 @@ msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" - msgstr "" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 -+#, fuzzy - msgid "" - "& [options] -d DIR\n" - "\n" -@@ -666,11 +705,11 @@ msgstr "" - #. * and component only. This is not supposed to happen often. - #. - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 --#, c-format -+#, fuzzy, c-format - msgid "Backtrace parsing failed for %s" - msgstr "Processamento da traçagem falhou para %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -682,7 +721,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula e grava o UUID de coredump no directório de problemas DIR" -+"Calcula e guarda o UUID de coredump na diretoria de problemas DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format -@@ -735,9 +774,10 @@ msgid "" - "& [-v] -d DIR\n" - "\n" - "Calculates and saves UUID and DUPHASH of python crash dumps" --msgstr "& [-v] -d DIR\n" -+msgstr "" -+"& [-v] -d DIR\n" - "\n" --"Calcula e grava o UUID e DUPHASH de dumps do python" -+"Calcula e guarda o UUID e DUPHASH de dumps de crache do python" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" -@@ -745,7 +785,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:79 - msgid "File {0} doesn't exist" --msgstr "Ficheiro {0} não existe" -+msgstr "O ficheiro {0} não existe" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" -@@ -754,7 +794,8 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Não é possível processar {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" -@@ -764,13 +805,46 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 -+#, fuzzy - msgid "" - "& [options] -d DIR\n" - "\n" -@@ -778,21 +852,21 @@ msgid "" - msgstr "" - "& [opções] -d DIR\n" - "\n" --"Analisa coredump no directório DIR com problema, gera e grava traçagem." -+"Analisa coredump na diretoria de problemas DIR, gera e guarda traçagem." - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 - msgid "Additional debuginfo directories" --msgstr "Directórios adicionais de debuginfo" -+msgstr "Diretorias adicionais da informação de depuração" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Matar o gdb se este for executado por mais de NUM segundos" -+msgstr "Terminar o gdb se este for executado mais de NUM segundos" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. - #. - #: ../src/plugins/abrt-action-generate-backtrace.c:103 --#, c-format -+#, fuzzy, c-format - msgid "Backtrace is generated and saved, %u bytes" - msgstr "Traçagem foi gerada e gravada, %u bytes" - -@@ -854,9 +928,10 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" --msgstr "Incapaz de abrir {0}: {1}" -+msgstr "Não é possível abrir {0}: {1}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#, fuzzy - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "O coredump referencia {0} ficheiros debuginfo, {1} deles não estão " -@@ -877,20 +952,49 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" --msgstr "Ficheiro debuginfo em falta: {0}" -+msgstr "Ficheiro da informação de depuração em falta: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" --msgstr "Todos os ficheiros debuginfo se encontram disponíveis" -+msgstr "Estão disponíveis todos os ficheiros da informação de depuração" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -906,21 +1010,21 @@ msgid "" - msgstr "" - "& [-v] [-d TAMANHO:DIR]... [-f TAMANHO:DIR]... [-p DIR] [FICHEIRO]...\n" - "\n" --"Remove directórios com problemas (-d) ou ficheiros (-f) em DIRs até que " --"estes sejam menores que TAMANHO.\n" --"FICHEIROs são preservados (nunca apagados)." -+"Elimina diretorias de problemas (-d) ou ficheiros (-f) em DIRs até que estes " -+"sejam menores que TAMANHO.\n" -+"Os FICHEIROS são preservados (nunca eliminados)." - - #: ../src/plugins/abrt-action-trim-files.c:236 - msgid "Delete whole problem directories" --msgstr "Remover todos os directórios com problemas" -+msgstr "Eliminar todos as diretorias de problemas" - - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "Remover ficheiros dentro deste directório" -+msgstr "Eliminar os ficheiros dentro desta diretoria" - - #: ../src/plugins/abrt-action-trim-files.c:238 - msgid "Preserve this directory" --msgstr "Preservar este directório" -+msgstr "Preservar esta diretoria" - - #: ../src/plugins/abrt-action-ureport:59 - #, c-format -@@ -1084,12 +1188,13 @@ msgid "" - msgstr "" - "& [-vs] [-F STR]... FILE PROG [ARGS]\n" - "\n" --"Verifique o ficheiro de log FILE, corra PROG quando este aumentar ou for " --"subtituido" -+"Verifique o ficheiro de registo FILE, executar PROG quando este aumentar ou " -+"for substituído" - - #: ../src/plugins/abrt-watch-log.c:154 -+#, fuzzy - msgid "Don't run PROG if STRs aren't found" --msgstr "Não corra o PROG se STRs não forem encontradas" -+msgstr "Não executar PROG se não forem encontradas STRs" - - #: ../src/plugins/abrt-dump-oops.c:77 - msgid "" -@@ -1100,6 +1205,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 -+#, fuzzy - msgid "Print found oopses on standard output" - msgstr "Apresentar oopses encontrados na saída standard" - -@@ -1114,7 +1220,9 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 -+#, fuzzy - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Igual a -d DumpLocation, DumpLocation está especificado em abrt.conf" - -@@ -1124,16 +1232,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" --msgstr "Tornar o directório com problema visível a todos" -+msgstr "Tornar a diretoria de problemas legível para todos" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 -+#, fuzzy - msgid "Print search string(s) to stdout and exit" - msgstr "Imprimir a(s) string(s) para o stdout e sair" - -@@ -1142,8 +1253,12 @@ msgstr "Imprimir a(s) string(s) para o stdout e sair" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1163,6 +1278,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1186,11 +1302,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1204,16 +1322,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1221,18 +1342,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1251,14 +1375,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1267,12 +1394,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1280,65 +1453,70 @@ msgid "" - msgstr "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" --"Extrair o Xorg crash do ficheiro FILE (ou entrada padrão)" -+"Extrair o crache Xorg do FICHEIRO (ou entrada padrão)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" --msgstr "Imprimir os dados do crash para o output padrão" -+msgstr "A impressão encontrou dados de crache na saída padrão" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:70 -+#, fuzzy - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." -@@ -1359,7 +1537,7 @@ msgstr "Não é possível criar o ficheiro temporário em" - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "Incapaz de executar '%s'" -+msgstr "Não é possível executar '%s'" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1367,7 +1545,7 @@ msgstr "Incapaz de executar '%s'" - #: ../src/plugins/abrt-retrace-client.c:842 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d" --msgstr "Falha ao enviar cabeçalho HTTP de tamanho %d: erro NSS %d" -+msgstr "Falha ao enviar o cabeçalho HTTP com o tamanho %d: erro NSS %d" - - #: ../src/plugins/abrt-retrace-client.c:223 - #: ../src/plugins/abrt-retrace-client.c:412 -@@ -1389,7 +1567,7 @@ msgstr "Resposta HTTP inesperada do servidor: %d\n" - #: ../src/plugins/abrt-retrace-client.c:992 - #: ../src/plugins/abrt-retrace-client.c:1062 - msgid "Invalid response from server: missing HTTP message body." --msgstr "Resposta inválida do servidor: falta o corpo da mensagem HTTP." -+msgstr "Resposta inválida do servidor: corpo da mensagem HTTP em falta." - - #: ../src/plugins/abrt-retrace-client.c:424 - #, c-format -@@ -1400,7 +1578,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" --msgstr "A questionar definições do servidor" -+msgstr "A consultar as configurações do servidor" - - #: ../src/plugins/abrt-retrace-client.c:452 - msgid "The server is fully occupied. Try again later." -@@ -1424,11 +1602,12 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:540 -+#, fuzzy - msgid "The server does not support xz-compressed tarballs." - msgstr "O servidor não suporta ficheiro comprimidos no formato xz-" - - #: ../src/plugins/abrt-retrace-client.c:577 --#, c-format -+#, fuzzy, c-format - msgid "The release '%s' is not supported by the Retrace server." - msgstr "A versão '%s' não é suportada pelo servidor de traçagem." - -@@ -1471,6 +1650,7 @@ msgid "Uploading %d%%\n" - msgstr "A enviar %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 -+#, fuzzy - msgid "Failed to read from a pipe" - msgstr "Falha ao ler de um pipe" - -@@ -1496,12 +1676,12 @@ msgid "" - "The archive contains malicious files (such as symlinks) and thus can not be " - "processed." - msgstr "" --"O arquivo contém ficheiros nefastos (tais como apontadores simbólicos) e " --"portanto não pode ser processado." -+"O arquivo contém ficheiros maliciosos (tais como hiperligações simbólicas) e " -+"por isso não pode ser processado." - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "Resposta inválida do servidor: falta X-Task-Id." -+msgstr "Resposta inválida do servidor: X-Task-Id em falta." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." -@@ -1546,7 +1726,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" --msgstr "Registar no syslog" -+msgstr "registar no registo do sistema" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" -@@ -1586,7 +1766,7 @@ msgstr "ler dados de coredump" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" --msgstr "Atraso para operações de sondagem" -+msgstr "Atraso para as operações de sondagem" - - #: ../src/plugins/abrt-retrace-client.c:1237 - msgid "(debug) do not delete temporary archive created from dump dir in " -@@ -1598,7 +1778,7 @@ msgstr "Para estado, backtrace e operações de log" - - #: ../src/plugins/abrt-retrace-client.c:1241 - msgid "id of your task on server" --msgstr "id da tarefa no servidor" -+msgstr "id. da tarefa no servidor" - - #: ../src/plugins/abrt-retrace-client.c:1243 - msgid "password of your task on server" -@@ -1620,14 +1800,14 @@ msgstr "É necessário um directório com problema ou um coredump." - #: ../src/plugins/abrt-retrace-client.c:1320 - #: ../src/plugins/abrt-retrace-client.c:1328 - msgid "Task id is needed." --msgstr "ID da tarefa é necessário." -+msgstr "É necessária a id. da tarefa." - - #: ../src/plugins/abrt-retrace-client.c:1306 - #: ../src/plugins/abrt-retrace-client.c:1314 - #: ../src/plugins/abrt-retrace-client.c:1322 - #: ../src/plugins/abrt-retrace-client.c:1330 - msgid "Task password is needed." --msgstr "Senha da tarefa é necessária." -+msgstr "É necessária a senha da tarefa." - - #: ../src/plugins/abrt-retrace-client.c:1334 - #, c-format -@@ -1636,13 +1816,13 @@ msgstr "Operação desconhecida: %s." - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 - msgid "Local GNU Debugger" --msgstr "Depurador GNU local" -+msgstr "Depurador Local GNU" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" - msgstr "" --"Descarregar pacotes debuginfo e gerar traçagem inversa localmente utilizando " --"GDB" -+"Transferir pacotes da informação de depuração e gerar \"backtrace\" " -+"localmente, utilizando GDB" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" -@@ -1687,7 +1867,7 @@ msgstr "Inseguro" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 - msgid "Whether or not to use insecure connection" --msgstr "Usar ou não uma ligação insegura" -+msgstr "Utilizar ou não uma ligação insegura" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" -@@ -1705,7 +1885,7 @@ msgstr "Recolher .xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" --msgstr "Gravar linhas relevantes do ficheiro ~/.xsession-errors" -+msgstr "Guardar linhas relevantes do ficheiro ~/.xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:3 - msgid "" -@@ -1861,19 +2041,19 @@ msgstr "Falha ao desligar NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1883,24 +2063,24 @@ msgstr "" - "Os programadores do kernel não conseguem diagnosticar relatórios " - "contaminados." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de ids de bug(s)" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especifique um url do servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especifique a versão" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1910,22 +2090,22 @@ msgstr "" - "\n" - "Procurar actualizações no servidor bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "A procurar actualizações" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Não foram encontradas actualizações para este pacote" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "A versão local deste pacote é mais recente do que a disponível nas " - "actualizações" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1947,65 +2127,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Utilização: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Remover directório de problema DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analisar e reportar problema em DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Apresentar informações sobre DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostrar relatório detalhado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2013,49 +2194,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opções] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2064,24 +2255,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/pt_BR.po b/po/pt_BR.po -index a1840a1..a34f711 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -26,7 +26,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -36,7 +36,7 @@ msgstr "" - "fedora-abrt/language/pt_BR/)\n" - "Language: pt-BR\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -46,34 +46,34 @@ msgstr "Relato de Problemas" - msgid "View and report application crashes" - msgstr "Visualizar e relatar travamentos de aplicações" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Não foi possível obter propriedade de '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Não é possível abrir o diretório para escrita '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Não é possível fechar a notificação: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Relatar" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Reiniciar" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -81,7 +81,7 @@ msgid "" - msgstr "" - "Lamentamos, parece que %s travou. O problema foi relatado automaticamente." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -90,8 +90,8 @@ msgstr "" - "Lamentamos, parece que %s travou. O problema será relatado quando a internet " - "estiver disponível." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -100,7 +100,7 @@ msgstr "" - "Lamentamos, parece que %s travou. Por favor, entre em contato com o " - "desenvolvedor se você quiser relatar o problema." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -109,7 +109,7 @@ msgstr "" - "Lamentamos, parece que %s travou. Se você quiser ajudar a resolver esse " - "problema, por favor, envie um relatório." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -117,7 +117,7 @@ msgstr "" - "Lamentamos, parece que um problema ocorreu num componente. O problema foi " - "relatado automaticamente." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -125,7 +125,7 @@ msgstr "" - "Lamentamos, parece que um problema ocorreu num componente. O problema será " - "relatado quando a internet estiver disponível." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -133,28 +133,28 @@ msgstr "" - "Lamentamos, parece que um problema ocorreu num componente. Se você quiser " - "ajudar a resolver esse problema, por favor, envie um relatório." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Não é possível mostrar a notificação: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Não é possivel ler a partir do canal gio: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Não é possível definir codificação no canal gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Não é possível ligar o modo de não bloqueamento para o canal gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -165,6 +165,17 @@ msgstr "" - "O mini aplicativo que notifica o usuário quando novos problemas foram " - "detectados pelo ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Pergunte antes de alterar o diretório" -@@ -186,13 +197,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"O arquivo coredump é necessário para a geração de rastreamento de pilha que " --"é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que " --"gera o rastreamento de pilha do coredump mas é necessário fazer o upload do " --"coredump a este serviço. Com esta opção desabilitada o ABRT fará o upload do " --"coredump automaticamente." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -237,10 +245,6 @@ msgstr "" - "relatados. Terá efeito somente se o relatório resumido estiver habilitado." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Pergunte antes de fazer upload do coredump" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -248,15 +252,15 @@ msgstr "" - "Com esta opção habilitada o ABRT sempre criará um bug ticket com acesso " - "restrito se detectar danos minuciosos." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Solicite um ticket confidencial para informações minuciosas" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notificar problemas incompletos" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -266,6 +270,22 @@ msgstr "" - "desligado ou usuário estiver ausente. A fim de fornecer relatórios completos " - "do problema, o ABRT não reportará automaticamente estes relatórios." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Fechar" -@@ -291,14 +311,14 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Sair" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -310,11 +330,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Diretório do problema" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Arquivo de Configuração" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -328,24 +348,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilize o NUM como uid de cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log para o syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adicionar os nomes dos programas ao log" - -@@ -353,62 +374,52 @@ msgstr "Adicionar os nomes dos programas ao log" - msgid "Unknown error" - msgstr "Erro desconhecido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' não é um diretório de problema válido" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' não é um nome válido de elemento" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "O '%s' não pode ser modificado" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' não é um diretório de problema válido" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Não Autorizado" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Não é possível acessar o problema para modificação" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "O '%s' não pode ser modificado" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " - "detalhes." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Não é possível acessar o problema para leitura" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' não é um nome válido de elemento" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Não foi possível obter o tamanho de '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nenhum problema de espaço." - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -418,12 +429,12 @@ msgstr "" - "O nome '%s' foi perdido, por favor verifique se outro serviço que possui o " - "nome não está em execução.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Sai após os segundos NUM de inatividade" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa deve estar sendo executado como root." - -@@ -450,18 +461,22 @@ msgstr "Não criar um daemon" - msgid "Log to syslog even with -d" - msgstr "Registrar no syslog mesmo com o -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Executar o EVENT no DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunicar diretamente com o usuário" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -498,89 +513,90 @@ msgstr "Número de processos simultâneas. O padrão é" - msgid "Maximal cache size in MiB. Default is " - msgstr "Tamanho máximo de cache em MiB. O padrão é" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Desliga a Autenticação" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nome do usuário do Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Senha do Red Hat Support, caso não seja fornecida, será enviada uma " - "solicitação " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Você também precisa especificar --username para --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Você pode utilizar --username ou --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Você pode usar --username ou --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Você pode usar --anonymous ou --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Número inválido e sem argumentos" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valor da opção desconhecida: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Senha:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Não foi possível continuar sem uma senha\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Reportagem automática de HTTP autenticado" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Reportagem automática de SSL Client autenticado" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Reportagem automática anônima" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -600,83 +616,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Não é um diretório: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Pulando: '{0}' (começa com a barra)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Pulando: '{0}' (começa com o ponto)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Pulando: '{0}' (contém ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Pulando: '{0}' (contém espaço)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Pulando: '{0}' (contém aba)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Não foi possível modificar o diretóri para '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipo de arquivo desconhecido: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Não foi possível criar o diretório em funcionamento no '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Não foi possível mover '{0}' para '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Não foi possível copiar '{0}' para '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Erro de verificação no '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Desempacotando '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Não foi possível criar o diretório '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Não foi possível desempacotar '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' processado com sucesso" - -@@ -700,18 +716,26 @@ msgstr "Não é possível realizar o chown'%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Remoção do diretório problema falhou: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Não foi possível obter lista de problemas a partir do abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -760,7 +784,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Análise do backtrace falhou por %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Falha de segmentação não encontrado" - -@@ -864,7 +888,7 @@ msgstr "Não é possível extrair a mensagem de oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Oops texto extraído com sucesso." - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -872,6 +896,38 @@ msgstr "" - "O log do kernel indica que foram detectados erros de hardware.\n" - "É provável que não seja um problema de software.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -990,7 +1046,36 @@ msgstr "Faltando arquivo debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Todos os arquivos debuginfo estão disponíveis." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1000,7 +1085,7 @@ msgstr "" - "'Não', um rastreamento em pilha será gerado localmente. (Pode baixar uma " - "grande quantidade de dados)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1242,7 +1327,8 @@ msgstr "Crie novo diretório de problema no DIR para todos os oops encontrados" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" -@@ -1253,17 +1339,19 @@ msgstr "Salve as informações extraídas em PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Tornar o diretório de problema mundial legível" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - "Regulador de falhas com problemas de criação de diretório em 1 segundo" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" - -@@ -1273,11 +1361,13 @@ msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" - msgid "Failed to compile regex" - msgstr "Falha ao compilar o regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"Não é possível atualizar informações sobre o problema: há mais de um oops " --"encontrados" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1296,6 +1386,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1319,11 +1410,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1337,16 +1430,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1354,18 +1450,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1384,14 +1483,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1400,12 +1502,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1415,59 +1563,63 @@ msgstr "" - "\n" - "Extraia o travamento do Xorg doFILE (ou entrada padrão)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Imprima dados de travamento encontrados na saída do padrão" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Criar diretório de problema no DIR para todos os travamentos encontrados" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2004,7 +2156,7 @@ msgstr "Falha ao desligar NSS" - msgid "Sleeping for %d seconds" - msgstr "Dormindo por %d segundos" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2012,7 +2164,7 @@ msgstr "" - "Ocorreu um problema no kernel por causa da BIOS quebrada. Infelizmente, " - "esses problemas não são solucionáveis ​​por mantenedores do kernel." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2020,7 +2172,7 @@ msgstr "" - "Ocorreu um problema de kernel, mas seu hardware não é suportado, portanto " - "mantenedores do kernel são incapazes de corrigir esse problema." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2030,24 +2182,24 @@ msgstr "" - "Mantenedores do kernel não são capazes de diagnosticar relatórios " - "adulterados." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Módulos danificados: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de ids de bug" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especificar a url do servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especificar um lançamento" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2057,20 +2209,20 @@ msgstr "" - "\n" - "Buscar atualizações no servidor bodhi." - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Buscando atualizações" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nenhuma atualização para este pacote encontrado" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Versão local dos pacotes é mais nova do que atualizações disponíveis." - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2097,66 +2249,67 @@ msgstr "Imprimir oopses encontrados" - msgid "Delete files with found oopses" - msgstr "Excluir arquivos com oopses encontrados" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "%s' identifica mais de um diretório problemático" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Listar problemas [em Diretórios]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Remover DIR de diretório de problema" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analisar e reportar dados do problema no DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimir informações sobre o DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Mostrar a contagem das quebras recentes" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Processar problemas múltiplos" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Listar apenas problemas não reportados" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Exibir relatório detalhado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Lista somente os problemas mais recentes do timestamp especificado" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Lista somente os problemas mais velhos do timestamp especificado" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2167,56 +2320,66 @@ msgstr "" - "\n" - "'abrt-auto-reporting habilitado' como um usuário com privilégios de root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Um texto maior do que este será mostrado resumidamente" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Não há o diretório defeituoso '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Mostrar apenas a contagem de problema sem mensagem" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Mostrar apenas problemas mais recentes que a marca de tempo especificada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Removendo '%s'" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& relatório [opções] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Remover PROBLEM_DIR após relatar" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Removendo '%s'" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Ações: remover (rm), info(i), skip(s):" -@@ -2227,27 +2390,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Acões: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Reportando '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Para o próximo problema, pressione ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Sem o argumento --since, itera em todos os problemas detectados." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Seleciona somente problemas detectados após o timestamp" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ru.po b/po/ru.po -index adba018..e5bde0b 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -4,15 +4,15 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-06 04:10-0400\n" --"Last-Translator: Igor Gorbounov \n" -+"PO-Revision-Date: 2015-07-20 08:46-0400\n" -+"Last-Translator: yuliya \n" - "Language-Team: Russian\n" - "Language: ru\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -@@ -25,37 +25,37 @@ msgid "View and report application crashes" - msgstr "Просмотреть сбои приложения и создать отчет" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Не удается стать владельцем «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Не удалось открыть каталог для записи «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Не удалось закрыть уведомление: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ой!" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Сообщить" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Перезапуск" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -64,7 +64,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке " - "автоматически отправлен." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -73,8 +73,8 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке будет " - "отправлен, когда будет доступ к Интернету." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -83,7 +83,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Свяжитесь с разработчиком, если " - "вы хотите сообщить о проблеме." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -92,7 +92,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Если вы хотите помочь решить " - "проблему, отправьте отчет." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -100,7 +100,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой компонента. Автоматически отправлен " - "отчет об этой проблеме." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -108,7 +108,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой компонента. Отчет об этой проблеме " - "будет отправлен, когда будет доступ к Интернету." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -117,32 +117,32 @@ msgstr "" - "проблемы, отправьте отчет." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Не удалось показать уведомление: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Не удалось выполнить чтение из канала gio: «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Не удалось изменить шифрование в канале gio: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Не удалось включить неблокирующий режим для канала gio: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -151,10 +151,21 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "Модуль оповещения о неполадках, обнаруженных ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "Спрашивать перед перехватом каталога" -+msgstr "Подтверждать перемещение каталога" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 -@@ -171,18 +182,15 @@ msgstr "Сокращенный отчет" - msgid "Silent shortened reporting" - msgstr "Сокращенный отчет без подтверждения" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Файл дампа памяти нужен для создания трассировки стека. На эту операцию " --"требуется достаточно много времени и места. ABRT предоставляет службу " --"создания трассировки стека из предварительно загруженного дампа памяти. Если " --"этот параметр выключен, ABRT будет отправлять дамп без подтверждения." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -205,7 +213,7 @@ msgid "" - "uReports are sent automatically immediately after problem detection." - msgstr "" - "uReport содержит краткое и полностью анонимное описание проблемы. ABRT " --"использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной " -+"использует отчеты uReport для быстрого поиска дубликатов. В стандартной " - "конфигурации uReport отправляется в начале процесса формирования отчетности. " - "Если этот параметр включен, отчеты uReport отправляются автоматически сразу " - "после обнаружения проблемы." -@@ -218,9 +226,8 @@ msgid "" - "You can always use the default problem browser to make complete report." - msgstr "" - "Если этот параметр включен, процесс создания отчета, запущенный нажатием " --"кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после " --"отправления отчета uReport. Для создания полного отчета можно " --"воспользоваться стандартным средством просмотра проблем." -+"кнопки «Отчет» во всплывающем сообщении о сбое, ограничится отправкой отчета " -+"uReport. Полный отчет можно создать в окне просмотра обнаруженных ошибок." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 -@@ -228,44 +235,54 @@ msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" --"Если этот параметр включен, ABRT не будет показывать уведомления о " --"сообщенных проблемах. Действует, только если включен сокращенный формат " --"отчетов." -+"Если этот параметр включен, ABRT не будет показывать уведомления об отправке " -+"отчетов. Действует, если включен сокращенный формат." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Спрашивать перед выгрузкой дампа памяти" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" --"Если этот параметр включен, ABRT будет создавать отчет об ошибке с " --"ограниченным доступом, если обнаружена вероятность попадания в отчет " --"конфиденциальных данных." -+"Если этот параметр включен, ABRT будет создавать отчет с ограниченным " -+"доступом, если обнаружена вероятность попадания в отчет конфиденциальных " -+"данных." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "Запросить доступ к закрытому билету с конфиденциальными данными" -+msgstr "Ограничение доступа к отчету" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "Уведомлять о неполных данных по проблеме" -+msgstr "Уведомлять о неполных данных" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" --"Обнаружены неполные данные об ошибках вследствие выключения компьютера или " --"выхода пользователя из системы. С целью обеспечения содержательности отчетов " --"ABRT не отправит отчет об этих ошибках." -+"Если обнаружены неполные данные об ошибках (вследствие выключения компьютера " -+"или выхода пользователя из системы), то в целях обеспечения информативности " -+"ABRT не позволит отправлять неполные отчеты." -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 -@@ -281,12 +298,12 @@ msgstr "По _умолчанию" - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "Конфигурация отчетов о сбоях" -+msgstr "Конфигурация отчетов об ошибках" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "О System Config ABRT" -+msgstr "О программе system-config-abrt" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/main.c:105 -@@ -298,7 +315,7 @@ msgstr "О программе" - msgid "Quit" - msgstr "Выход" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -306,10 +323,10 @@ msgid "" - msgstr "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" --"Запросить в базе данных и сохранить название пакета и компонента" -+"Сделать запрос к базе данных и сохранить название пакета и компонента" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -322,11 +339,11 @@ msgid "Problem directory" - msgstr "Каталог с данными сбоя" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Файл конфигурации" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Использовать этот каталог в качестве корневого для RPM" - -@@ -343,27 +360,28 @@ msgid "Root directory for running container commands" - msgstr "Корневой каталог для выполнения команд для контейнера" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [параметры]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Использовать NUM как uid клиента" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Запись в журнал" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Добавить названия программ в журнал" - -@@ -373,69 +391,58 @@ msgid "Unknown error" - msgstr "Неизвестная ошибка" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "«%s» не является правильным каталогом для данных о сбое" -+msgid "'%s' is not a valid element name" -+msgstr "Недопустимое имя элемента: «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Элемент «%s» не может быть изменен" -+msgid "'%s' is not a valid problem directory" -+msgstr "Недопустимый каталог с данными сбоя: «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Не разрешено" - -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Ошибка доступа к проблеме с целью ее изменения" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Элемент «%s» не может быть изменен" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "Не удалось изменить владельца каталога. Проверьте журналы." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Не удается получить доступ к данным сбоя для чтения" -- - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "Недопустимое имя элемента: «%s»" -- --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Не удалось определить размер «%s»." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Недостаточно места" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Ошибка удаления элемента «%s» из каталога «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -446,13 +453,13 @@ msgstr "" - "использующая это имя.\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Выйти после NUM секунд бездействия" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - "Эта программа должна запускаться от имени привелигированного пользователя." -@@ -482,21 +489,24 @@ msgstr "Не выполнять как службу" - msgid "Log to syslog even with -d" - msgstr "Запись в журнал даже с -d" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Запуск EVENT в DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Взаимодействие с пользователем напрямую" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -519,8 +529,8 @@ msgstr "" - "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n" - "\n" - "\n" --"Следит за указанным каналогом и распаковывает поступающие\n" --"архивы в место, определенное в выражении DumpLocation в abrt.conf\n" -+"Следит за указанным каталогом и распаковывает поступающие\n" -+"архивы в место, определенное значением DumpLocation в abrt.conf\n" - "\n" - "Если КАТАЛОГ не определен, будет выбрано значение \n" - "WatchCrashdumpArchiveDir из abrt.conf" -@@ -541,91 +551,92 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "Максимальный размер кэша в МиБ. По умолчанию:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Отключает аутентификацию" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Имя пользователя в системе поддержки Red Hat" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " - "его ввести вручную" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Путь к SSL-сертификату uReport или тип сертификата" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "Если задан пароль, необходимо определить --username" -+msgstr "Если пароль задан, необходимо определить --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Укажите --username или --certificate " - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Укажите --username или --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Укажите --anonymous или --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Недопустимое число аргументов" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Неизвестное значение параметра: «%s»\n" -+msgstr "Неизвестное значение: «%s»\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Пароль:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Для продолжения необходимо ввести пароль.\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Автоматический отчет для HTTP-подключений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Автоматический отчет для SSL-подключений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Автоматический отчет для анонимных подключений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -645,83 +656,83 @@ msgstr "" - " ФАЙЛ - имя файла отправляемого архива\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Не является каталогом: «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Пропускается: «{0}» (начинается с косой черты)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Пропускается: «{0}» (начинается с точки)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Пропускается: «{0}» (содержит ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Пропускается: «{0}» (содержит пробел)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Пропускается: «{0}» (содержит знак табуляции)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Не удалось изменить каталог на «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Неизвестный тип файла: «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Не удалось создать рабочий каталог в «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Не удалось переместить «{0}» в «{1}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Не удалось скопировать «{0}» в «{1}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Ошибка проверки «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Распаковка «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Не удалось создать каталог «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Не удалось распаковать «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' обработан успешно" - -@@ -749,23 +760,31 @@ msgstr "Не удается сменить владельца «%s»: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Не удалось удалить каталог с данными о сбоях: %s" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Не удается получить список ошибок от abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Не удается проверить, существует ли элемент, через abrt-dbus: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/lib/ignored_problems.c:233 -@@ -780,8 +799,8 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"Ошибка записи в «%s». Не удалось удалить проблему «%s» из списка " --"игнорируемых проблем «%s»." -+"Ошибка записи в «%s». Не удалось удалить «%s» из списка игнорируемых проблем " -+"«%s»." - - # translation auto-copied from project abrt, version rhel7, document abrt - #. Something nefarious happened -@@ -817,7 +836,7 @@ msgid "Backtrace parsing failed for %s" - msgstr "Ошибка разбора протокола сбоя %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Поток сбоя не найден" - -@@ -939,7 +958,7 @@ msgid "Oops text extracted successfully" - msgstr "Текст ошибки ядра извлечен успешно" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -947,6 +966,38 @@ msgstr "" - "kernel.log сообщает об ошибках оборудования.\n" - "Это, скорее всего, не проблема программного обеспечения.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -1105,8 +1156,37 @@ msgstr "Отсутствует файл debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Все отладочные пакеты доступны" - -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1117,7 +1197,7 @@ msgstr "" - "значительного объема данных." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1243,7 +1323,7 @@ msgstr "Сигнал, вызванный изменением размеров - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "Сигнал по истечении " -+msgstr "Сигнал по завершении alarm(N) " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-gdb-exploitable:583 -@@ -1396,7 +1476,8 @@ msgstr "Создавать каталог в DIR для каждого сбоя - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задается в abrt.conf" - -@@ -1408,18 +1489,20 @@ msgstr "Сохранить извлеченную информацию в PROBLE - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Открыть доступ чтения к каталогу сбоев" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Повторить создание каталога через 1 секунду" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Вывести строку (строки) поиска в stdout и выйти" - -@@ -1429,10 +1512,13 @@ msgstr "Вывести строку (строки) поиска в stdout и в - msgid "Failed to compile regex" - msgstr "Не удалось скомпилировать регулярное выражение" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Не удалось обновить проблему: найдено несколько ошибок" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1451,6 +1537,7 @@ msgstr "Не удалось сохранить данные по обнаруж - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Не удалось инициализировать отслеживание systemd-journal" - -@@ -1485,11 +1572,13 @@ msgstr "Создавать новый каталог для сбоя в DIR дл - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Начать чтение журнала systemd с позиции курсора" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Начать чтение журнала systemd с конца" - -@@ -1503,16 +1592,19 @@ msgstr "То же, что и -t INT, INT указывается в plugins/CCpp. - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Следить за журналом systemd с последней позиции просмотра (если есть)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Необходимо указать либо -c CURSOR, либо -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не удается открыть журнал systemd" - -@@ -1520,18 +1612,21 @@ msgstr "Не удается открыть журнал systemd" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Не удается отобрать из журнала systemd только данные systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не удается перейти в конец журнала " - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Не удалось установить курсор журнала systemd «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Не удается чтение данных журнала." - -@@ -1562,29 +1657,78 @@ msgstr "" - "Последняя позиция просмотра сохраняется в " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Читать файлы журнала со всех машин" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Читать все файлы журнала из каталога в PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Не удается инициализация systemd-journal в каталоге «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Не удается отобрать из журнала systemd-journal только данные ядра" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Не удалось начать наблюдение с курсора «%s»" - -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1595,45 +1739,49 @@ msgstr "" - "Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Вывести найденные данные о сбое в стандартный вывод" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Создавать каталог в DIR для каждого сбоя" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Не удается сохранить точку отслеживания журнала" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Не удается сохранить точку отслеживания журнала: открывание(«%s»)" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "Не восстанавливается точка отслеживания журнала: файл «%s» не существует" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Не удается восстановить точку отслеживания журнала из файла «%s»" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Не удается восстановить точку отслеживания журнала: путь «%s» не является " - "обычным файлом" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1641,12 +1789,12 @@ msgstr "" - "Не удается восстановить точку отслеживания журнала: файл «%s» превышает " - "предельный размер %dБ" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Не удается восстановить точку отслеживания журнала: открывание(«%s»)" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1654,7 +1802,7 @@ msgstr "" - "весь файл «%s»" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Не удалось переместить журнал в позицию курсора из файла «%s»" -@@ -2051,7 +2199,7 @@ msgid "" - "private data, if any." - msgstr "" - "Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: " --"не требуется загружать debuginfo. База данных на остлеживающем сервер более " -+"не требуется загружать debuginfo. База данных на отслеживающем сервере более " - "подробная, поэтому сервер может создавать более точные отчёты. Недостатки: " - "отправляемый дамп содержит все данные сбойной программы, в том числе и " - "личные." -@@ -2284,7 +2432,7 @@ msgid "Sleeping for %d seconds" - msgstr "Переход в режим ожидания на %d сек." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2293,7 +2441,7 @@ msgstr "" - "проблемы не решаются на уровне ядра." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2302,7 +2450,7 @@ msgstr "" - "проблема не может быть решена на уровне ядра." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2313,28 +2461,28 @@ msgstr "" - "диагностировать проблему в таких ядрах." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Поврежденные модули: %s." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Список идентификторов ошибок" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Указать адрес bodhi-сервера" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Указать версию" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2345,23 +2493,23 @@ msgstr "" - "Искать обновления на bodhi-сервере" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Поиск обновлений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Нет обновлений этого пакета" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Локальная версия пакета новее обнаруженных обновлений" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2392,79 +2540,79 @@ msgid "Delete files with found oopses" - msgstr "Удалить файлы с найденными сбоями" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "«%s» обнаружил несколько проблемных каталогов" - --# translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Формат: abrt-cli [--version] КОМАНДА [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Показать ошибки [в DIR]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Удалить каталог DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Анализировать и предоставить отчет по ошибкам в DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Вывод информации о DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Вывод числа недавних сбоев" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Обработка нескольких проблем" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - "Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [параметры]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Показать ошибки, о которых еще не сообщалось" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Показать подробный отчёт" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Дать список сбоев, обнаруженных после указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Дать список сбоев, обнаруженных до указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2475,60 +2623,70 @@ msgstr "" - "Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [параметры] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Текст, длина которого превышает указанную, будет усечен" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Нет такого каталога: «%s»." - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Вывод только числа сбоев" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Вывод сбоев, обнаруженных после указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT обнаружил %u сбой (сбоев). Для получения дополнительной информации " - "выполните: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Удаление «%s»" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [параметры] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Удалить PROBLEM_DIR после отправки отчета" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Удаление «%s»" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Действия: удалить (rm), информация (i), пропустить (s):" -@@ -2539,29 +2697,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Отчет по «%s»..." - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Для перехода к следующей проблеме нажмите ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " - "последовательно" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Выбор сбоев, обнаруженных после заданного момента времени" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/sk.po b/po/sk.po -index 3bf4b52..63f33da 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -9,126 +9,141 @@ - # Michal Hriň , 2011 - # Milan Ondrašovič , 2013 - # Richard Marko , 2012 -+# Dusan Kazik , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-21 12:10-0400\n" -+"Last-Translator: Dusan Kazik \n" - "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/" - "language/sk/)\n" - "Language: sk\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Nahlásenie problému" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Zobrazuje a nahlasuje zlyhania aplikácií" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Nedá sa prevziať vlastníctvo '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nedá sa zavrieť oznámenie: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Ale nie!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Nahlásiť" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Reštartovať" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Problém " -+"bol automaticky nahlásený." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Keď bude " -+"dostupné pripojenie na internet, bude problém nahlásený." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak chcete " -+"nahlásiť problém, prosím, kontaktujte vývojára." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak by ste " -+"chceli pomôcť vyriešiť problém, prosím, odošlite hlásenie." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Problém " -+"bol automaticky nahlásený." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Keď bude " -+"dostupné pripojenie na internet, bude problém nahlásený." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém. Ak by ste chceli " -+"pomôcť tento problém vyriešiť, prosím, odošlite hlásenie." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nedá sa zobraziť oznámenie: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Nedá sa čítať z kanálu gio: „%s“" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nedá sa nastaviť kódovanie na kanáli gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nedá sa zapnúť neblokovaný režim pre kanál gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -138,28 +153,41 @@ msgstr "" - "\n" - "Aplet, ktorý upozorní používateľa na novo zistené problémy službou ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Opýtať sa pred odcudzením adresára" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Automaticky odoslať hlásenie uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "Skrátenie nahlasovanie" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "Tiché skrátené nahlasovanie" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -192,33 +220,45 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "" -+msgstr "Požiadať o súkromný tiket pre citlivé informácie" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "" -+msgstr "Oznámiť nedokončené problémy" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Zavrieť" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" -@@ -227,7 +267,7 @@ msgstr "_Predvolené" - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "Problém s hlásením konfigurácie" -+msgstr "Konfigurácia nahlásenia problému" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" -@@ -241,14 +281,14 @@ msgstr "O programe" - msgid "Quit" - msgstr "Ukončiť" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -260,11 +300,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Adresár s informáciami o probléme" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfiguračný súbor" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -278,24 +318,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [voľby]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Použiť NUM ako identifikátor používateľa pre klienta" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Zalogovať do syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Pridať názvy programu do log-u" - -@@ -303,62 +344,52 @@ msgstr "Pridať názvy programu do log-u" - msgid "Unknown error" - msgstr "Neznáma chyba" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' nie je platným adresárom problému" -+msgid "'%s' is not a valid element name" -+msgstr "„%s“ nie je platným názvom prvku" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Prvok „%s“ sa nedá zmeniť" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' nie je platným adresárom problému" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Nepovolený" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nedá sa pristúpiť k problému a zmeniť ho" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Prvok „%s“ sa nedá zmeniť" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte " - "systémové záznamy." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "„%s“ nie je platným názvom prvku" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Nedá sa získať veľkosť „%s“" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nezostalo miesto pre problémy" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -368,12 +399,12 @@ msgstr "" - "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca " - "tento názov nie je spustená.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Ukončit po NUM sekundách neaktivity" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Tento program musí byť spustený s oprávneniami administrátora." - -@@ -399,18 +430,22 @@ msgstr "Nespúšťať ako démona" - msgid "Log to syslog even with -d" - msgstr "Zalogovať do syslog ešte s -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ADR. UDALOSTÍ..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Spustiť EVENT v adresári DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikovať priamo s používateľom" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -438,75 +473,76 @@ msgstr "" - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "" -+msgstr "Maximálna veľkosť vyrovnávacej pamäte v MiB. Predvolená je " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Vypne overovanie totožnosti" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Používateľské meno podpory spoločnosti Red Hat" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" --msgstr "" -+msgstr "Neplatný počet argumentov" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "" -+msgstr "Neznáma hodnota pre voľbu: „%s“\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Heslo:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Nedá sa pokračovať bez hesla\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "anonymné automatické nahlasovanie" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -518,68 +554,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Nie je adresár: „{0}“" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (začína lomítkom)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (začína bodkou)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (obsahuje ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (obsahuje medzeru)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (obsahuje tabulátor)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Nedá sa zmeniť adresár na „{0}“" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -603,18 +639,26 @@ msgstr "Nedá sa vykonať chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Zlyhalo odstránenie adresára s problémom: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nedá sa získať zoznam problémov zo zbernice abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -661,7 +705,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Parsovanie backtrace zlyhalo pre %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Vlákno s pádom sa nenašlo" - -@@ -751,7 +795,8 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Nedá sa spracovať {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" -@@ -761,12 +806,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -811,7 +888,7 @@ msgstr "Generuje sa záznam volaní jadra (core_backtrace)" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 - msgid "Error: GDB did not return any data" --msgstr "" -+msgstr "Chyba: Odlaďovač GDB nevrátil žiadne údaje" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 - #, c-format -@@ -870,7 +947,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" --msgstr "" -+msgstr "Chýba požadovaný súbor: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" -@@ -880,7 +957,36 @@ msgstr "Chýbajúci debuginfo balíček: {0}" - msgid "All debuginfo files are available" - msgstr "Všetky debuginfo balíčky sú dostupné." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -890,7 +996,7 @@ msgstr "" - "stacktrace bude vygenerovaný lokálne. (Môže byť nutné stiahnuť veľké " - "množstvo dát)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -927,25 +1033,27 @@ msgstr "Ponechať daný adresár" - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "" -+msgstr "Nie je možné spustiť „%s“. Chybová hláška bola: „%s“" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "" -+msgstr "Nie je číslo v súbore „%s“" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" --msgstr "" -+msgstr "Použitie: %s [-v]" - - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" -+"Nie je možné získať aktuálny pracovný adresár, pretože bol pravdepodobne " -+"odstránený" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "" -+msgstr "Pre tento problém už bolo vyplnené hlásenie o chybe:" - - #: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" -@@ -979,7 +1087,7 @@ msgstr "" - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "" -+msgstr "Signál bol odoslaný klávesnicou" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 -@@ -1022,7 +1130,7 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" --msgstr "" -+msgstr "Aritmetická výnimka" - - #: ../src/plugins/abrt-gdb-exploitable:637 - msgid "Division by zero" -@@ -1030,7 +1138,7 @@ msgstr "Delenie nulou" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "" -+msgstr "Nepovolená inštrukcia (skok na náhodnú adresu?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" -@@ -1038,11 +1146,11 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" --msgstr "" -+msgstr "Pretečenie zásobníka" - - #: ../src/plugins/abrt-gdb-exploitable:656 - msgid "Write to an invalid address" --msgstr "" -+msgstr "Zápis do neplatnej adresy" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" -@@ -1051,7 +1159,7 @@ msgstr "" - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 - msgid "Jump to an invalid address" --msgstr "" -+msgstr "Skok na neplatnú adresu" - - #: ../src/plugins/abrt-gdb-exploitable:674 - msgid "" -@@ -1064,7 +1172,7 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "" -+msgstr "Pravdepodobný dôvod predčasného skončenia:" - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " -@@ -1072,7 +1180,7 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "" -+msgstr "Aktuálna inštrukcia:" - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" -@@ -1116,7 +1224,8 @@ msgstr "Vytvoriť nový adresár s problémom v DIR pre každý nájdený oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Rovnaké ako -d DumpLocation, DumpLocation je nastavené v abrt.conf" - -@@ -1126,26 +1235,32 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Nastaviť pracovný adresár prístupný pre všetkých" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Vypísať vyhľadávací/ie reťazec/ce na stdout a skončiť" - - #: ../src/plugins/abrt-dump-oops.c:127 - #: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" -+msgstr "Zlyhalo skompilovanie regexu" -+ -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1165,6 +1280,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1188,11 +1304,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1206,16 +1324,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1223,18 +1344,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1253,14 +1377,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1269,12 +1396,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1284,58 +1457,62 @@ msgstr "" - "\n" - "Extrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Vypísať nájdené údaje o páde na štandardný výstup" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Vytvoriť adresár s problémom v DIR pre každý nájdený pád" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1863,19 +2040,19 @@ msgstr "Nepodarilo sa ukončiť NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1885,24 +2062,24 @@ msgstr "" - "označené ako 'tainted' (príkaz: %s). Vývojári jadra nie sú schopný " - "diagnostikovať takto označený problém." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Nefunkčné moduly: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Zoznam identifikátorov chýb" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Určte url servera bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Určte vydanie" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1912,20 +2089,20 @@ msgstr "" - "\n" - "Vyhľadávať aktualizácie na bodhi serveri" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Hľadajú sa aktualizácie" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nenašli sa aktualizácie pre tento balík" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokálna verzia balíka je novšia ako v dostupných aktualizáciách" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1949,65 +2126,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Použitie: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Zmazať adresár DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyzovať a ohlásiť problém z adresára DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Vypísať informácie o adresári DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Vypísať počet nedávnych pádov" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Zobraziť detailnú správu" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2015,52 +2193,62 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Vypísať iba počet problémov bez akejkoľvek správy" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2069,24 +2257,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/sq.po b/po/sq.po -index 971f150..aeb05e4 100644 ---- a/po/sq.po -+++ b/po/sq.po -@@ -1,195 +1,138 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: -+# Silva Arapi , 2015. #zanata - msgid "" - msgstr "" --"Project-Id-Version: ABRT\n" -+"Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2014-10-06 13:44+0200\n" --"PO-Revision-Date: 2014-10-06 11:45+0000\n" --"Last-Translator: Jakub Filak \n" --"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2015-10-31 11:16-0400\n" -+"Last-Translator: Silva Arapi \n" -+"Language-Team: Albanian\n" - "Language: sq\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Zanata 3.8.2\n" -+"Plural-Forms: nplurals=2; plural=(n != 1)\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 --msgid "Automatic Bug Reporting Tool" --msgstr "" -+msgid "Problem Reporting" -+msgstr "Raportimi i Problemeve" - - #: ../src/applet/abrt-applet.desktop.in.h:2 --msgid "ABRT notification applet" --msgstr "" -- --#: ../src/applet/applet.c:129 --msgid "" --"The report which will be sent does not contain any security sensitive data. " --"Therefore it is not necessary to bother you next time and require any " --"further action by you. \n" --msgstr "" -- --#: ../src/applet/applet.c:135 --msgid "Do you want to enable automatically submitted crash reports?" --msgstr "" -+msgid "View and report application crashes" -+msgstr "Shikoni dhe raportoni përplasjet e aplikacioneve" - --#: ../src/applet/applet.c:140 --msgid "Do you want to enable automatically submitted anonymous crash reports?" -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 -+#, c-format -+msgid "Can't take ownership of '%s'" - msgstr "" - --#. The NetworkManager DBus service is not available. --#: ../src/applet/applet.c:241 -+#: ../src/applet/applet.c:268 - #, c-format --msgid "Can't connect to NetworkManager over DBus: %s" --msgstr "" -+msgid "Can't open directory for writing '%s'" -+msgstr "Nuk mund të hapet direktoria për të shkruar '%s'" - --#: ../src/applet/applet.c:265 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format --msgid "Can't determine network status via NetworkManager: %s" --msgstr "" -+msgid "Can't close notification: %s" -+msgstr "Nuk mund të mbyllen njoftimet: %s" - --#: ../src/applet/applet.c:384 --msgid "A problem has been detected" -+#: ../src/applet/applet.c:598 -+msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:386 --#, c-format --msgid "A problem in the %s package has been detected" -+#: ../src/applet/applet.c:616 -+msgid "Report" - msgstr "" - --#: ../src/applet/applet.c:396 --#, c-format --msgid "%s and the diagnostic data has been submitted" -+#: ../src/applet/applet.c:625 -+msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 --#: ../src/plugins/abrt-retrace-client.c:168 -+#: ../src/applet/applet.c:694 - #, c-format --msgid "Can't execute '%s'" -+msgid "" -+"We're sorry, it looks like %s crashed. The problem has been automatically " -+"reported." - msgstr "" - --#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 -+#: ../src/applet/applet.c:699 - #, c-format --msgid "Can't close notification: %s" --msgstr "" -- --#: ../src/applet/applet.c:675 - msgid "" --"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" --"\n" --"Do you want to continue?" -+"We’re sorry, it looks like %s crashed. The problem will be reported when the " -+"internet is available." - msgstr "" - --#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 --msgid "Warning" --msgstr "" -- --#: ../src/applet/applet.c:803 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 -+#, c-format - msgid "" --"Notification area applet that notifies users about issues detected by ABRT" -+"We're sorry, it looks like %s crashed. Please contact the developer if you " -+"want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:819 --msgid "translator-credits" --msgstr "" -- --#: ../src/applet/applet.c:827 --msgid "_Quit" --msgstr "" -- --#: ../src/applet/applet.c:829 --msgid "Hide" --msgstr "" -- --#: ../src/applet/applet.c:831 --msgid "_About" --msgstr "" -- --#: ../src/applet/applet.c:899 --msgid "Problem detected" --msgstr "" -- --#: ../src/applet/applet.c:949 --msgid "Ignore forever" --msgstr "" -- --#. Problem has been 'autoreported' and is considered as KNOWN --#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 --msgid "Open" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "The Problem has already been Reported" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "A Known Problem has Occurred" --msgstr "" -- --#. Problem has not yet been 'autoreported' and can be --#. * 'autoreported' on user request. --#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 --msgid "Report" -+#: ../src/applet/applet.c:713 -+#, c-format -+msgid "" -+"We're sorry, it looks like %s crashed. If you'd like to help resolve the " -+"issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:989 --msgid "A Problem has Occurred" -+#: ../src/applet/applet.c:732 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:1015 --msgid "A Problem has been Reported" -+#: ../src/applet/applet.c:736 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:1023 --msgid "A New Problem has Occurred" -+#: ../src/applet/applet.c:741 -+msgid "" -+"We're sorry, it looks like a problem occurred. If you'd like to help resolve " -+"the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:1033 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:1151 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1155 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1189 --#, c-format --msgid "Can't take ownership of '%s'" --msgstr "" -- --#: ../src/applet/applet.c:1198 --#, c-format --msgid "Can't open directory for writing '%s'" -+#: ../src/applet/applet.c:1186 -+msgid "" -+"& [-v] [DIR]...\n" -+"\n" -+"Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - --#: ../src/applet/applet.c:1481 --#, c-format -+#: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" --"Failed to open connection to session manager: '%s', notification may " --"reappear on the next login" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." - msgstr "" - --#: ../src/applet/applet.c:1622 --msgid "" --"& [-v] [DIR]...\n" --"\n" --"Applet which notifies user when new problems are detected by ABRT\n" -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 -@@ -211,10 +154,11 @@ msgstr "" - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " --"space consuming operation. ABRT provides a service which generates the stack" --" trace from the coredump but you have to upload the coredump to this " --"service. With this option disabled ABRT will upload the coredump without " --"asking." -+"space consuming operation. ABRT provides a service which generates the stack " -+"trace from the coredump but you have to upload the coredump to this service. " -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -228,15 +172,15 @@ msgstr "" - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" - "uReport is short and completely anonymous description of a problem. ABRT " --"uses uReports for fast global duplicate detection. In default configuration" --" uReport is sent at beginning of reporting process. With this option enabled" --" uReports are sent automatically immediately after problem detection." -+"uses uReports for fast global duplicate detection. In default configuration " -+"uReport is sent at beginning of reporting process. With this option enabled " -+"uReports are sent automatically immediately after problem detection." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" --"With this option enabled reporting process started by click on Report button" --" in problem notification bubble will be interrupted after uReport is sent. " -+"With this option enabled reporting process started by click on Report button " -+"in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" - -@@ -247,30 +191,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -296,16 +252,17 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:388 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:400 -+#: ../src/daemon/abrt-action-save-package-data.c:406 -+#: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 --#: ../src/plugins/abrt-action-analyze-c.c:78 -+#: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 - #: ../src/plugins/abrt-action-analyze-xorg.c:84 - #: ../src/plugins/abrt-action-analyze-python.c:47 -@@ -314,123 +271,143 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:401 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 --#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 -+#: ../src/daemon/abrt-action-save-package-data.c:408 -+msgid "Use this directory as RPM root" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:199 -+msgid "& [-v] -d DIR\n" -+"\n" -+"Save container metadata" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:211 -+msgid "Root directory for running container commands" -+msgstr "" -+ -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 --#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 --#: ../src/plugins/abrt-dump-journal-oops.c:302 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 -+#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-oops.c:219 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:123 -+#: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:188 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:223 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 --#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:256 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:461 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:559 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:580 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:595 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:627 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 -+#: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 --#: ../src/daemon/abrtd.c:499 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - --#: ../src/daemon/abrtd.c:451 -+#: ../src/daemon/abrtd.c:389 - msgid "" - "The problem data are incomplete. This usually happens when a problem is " --"detected while computer is shutting down or user is logging out. In order to" --" provide valuable problem reports, ABRT will not allow you to submit this " --"problem. If you have time and want to help the developers in their effort to" --" sort out this problem, please contact them directly." -+"detected while computer is shutting down or user is logging out. In order to " -+"provide valuable problem reports, ABRT will not allow you to submit this " -+"problem. If you have time and want to help the developers in their effort to " -+"sort out this problem, please contact them directly." - msgstr "" - --#: ../src/daemon/abrtd.c:497 -+#: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" - msgstr "" - --#: ../src/daemon/abrtd.c:498 -+#: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -460,20 +437,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:81 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:113 -+#: ../src/daemon/abrt-auto-reporting.c:233 -+msgid "Turns the authentication off" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:234 -+msgid "Red Hat Support user name" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:235 -+msgid "Red Hat Support password, if not given, a prompt for it will be issued" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:236 -+msgid "uReport SSL certificate paths or certificate type" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:252 -+msgid "You also need to specify --username for --password" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:258 -+msgid "You can use either --username or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:264 -+msgid "You can use either --username or --anonymous" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:270 -+msgid "You can use either --anonymous or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:138 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-auto-reporting.c:336 -+msgid "Password:" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:339 -+msgid "Cannot continue without password\n" -+msgstr "" -+ -+#. Print only the part before ':' of a string like "username:password" -+#: ../src/daemon/abrt-auto-reporting.c:380 -+msgid "HTTP Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:382 -+msgid "SSL Client Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:384 -+msgid "anonymous auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -485,68 +516,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -570,16 +601,30 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 -+#, c-format -+msgid "Can't test whether the element exists over abrt-dbus: %s" -+msgstr "" -+ - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" -@@ -606,19 +651,21 @@ msgid "" - "and identifies crash function in problem directory DIR" - msgstr "" - -+#. - #. * The parser failed. Compute the duphash from the executable - #. * instead of a backtrace. - #. * and component only. This is not supposed to happen often. -+#. - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-c.c:67 -+#: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" - "& [-v] -d DIR\n" - "\n" -@@ -691,8 +738,7 @@ msgid "Extracting the oops text from core" - msgstr "" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 --msgid "" --"Can't process {0}:\n" -+msgid "Can't process {0}:\n" - "{1}" - msgstr "" - -@@ -704,12 +750,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -727,6 +805,7 @@ msgstr "" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -+#. - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" -@@ -761,60 +840,99 @@ msgstr "" - msgid "Exiting on user command" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:88 -+#: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format - msgid "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" - " [-e, --exact=PATH[:PATH]...]\n" - "\n" - "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" - "to CACHEDIR, using TMPDIR as temporary staging area.\n" - "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" - "\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" - " -v Be verbose\n" - " -y Noninteractive, assume 'Yes' to all questions\n" - " --ids Default: build_ids\n" --" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -+" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" - " --cache Default: /var/cache/abrt-di\n" - " --size_mb Default: 4096\n" -+" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:169 -+#: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:206 -+#: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:209 -+#: ../src/plugins/abrt-action-install-debuginfo.in:215 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:223 -+#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#, c-format -+msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:228 -+#: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:231 -+#: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -824,7 +942,8 @@ msgstr "" - msgid "" - "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" - "\n" --"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" -+"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " -+"SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" - -@@ -840,38 +959,38 @@ msgstr "" - msgid "Preserve this directory" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:40 -+#: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:51 -+#: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:80 -+#: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:100 -+#: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:128 -+#: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:138 -+#: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:159 -+#: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:164 -+#: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" - msgstr "" -@@ -1005,116 +1124,168 @@ msgstr "" - msgid "Don't run PROG if STRs aren't found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:76 -+#: ../src/plugins/abrt-dump-oops.c:77 - msgid "" - "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-oops.c:303 -+#: ../src/plugins/abrt-dump-oops.c:98 -+#: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" - msgstr "" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users --#: ../src/plugins/abrt-dump-oops.c:101 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#. -+#: ../src/plugins/abrt-dump-oops.c:102 -+#: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:102 --#: ../src/plugins/abrt-dump-journal-oops.c:308 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-oops.c:225 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:104 --#: ../src/plugins/abrt-dump-journal-oops.c:309 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-oops.c:105 -+#: ../src/plugins/abrt-dump-journal-oops.c:226 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:105 --#: ../src/plugins/abrt-dump-journal-oops.c:310 -+#: ../src/plugins/abrt-dump-oops.c:106 -+#: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:126 --#: ../src/plugins/abrt-dump-journal-oops.c:214 -+#: ../src/plugins/abrt-dump-oops.c:127 -+#: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:185 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:43 --msgid "Cannot read journal data." -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - --#. Only notice because this is expected --#: ../src/plugins/abrt-dump-journal-oops.c:125 --#, c-format --msgid "Not restoring journal watch's position: file '%s' does not exist" -+#: ../src/plugins/abrt-dump-journal-core.c:341 -+#: ../src/plugins/abrt-dump-journal-core.c:377 -+msgid "Failed to obtain all required information from journald" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:129 -+#. We don't want to update the counter here. -+#: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format --msgid "Cannot restore journal watch's position form file '%s'" -+msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:135 --#, c-format --msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+#: ../src/plugins/abrt-dump-journal-core.c:407 -+msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:141 --#, c-format -+#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 -+msgid "Failed to initialize systemd-journal watch" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" --"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extract coredumps from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:149 --#, c-format --msgid "Cannot restore journal watch's position: open('%s')" -+#: ../src/plugins/abrt-dump-journal-core.c:478 -+msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:158 --#, c-format --msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 -+msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:170 --#, c-format --msgid "Failed to move the journal to a cursor from file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 -+msgid "Start reading systemd-journal from the end" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:185 --msgid "Cannot save journal watch's position" -+#: ../src/plugins/abrt-dump-journal-core.c:482 -+msgid "Throttle problem directory creation to 1 per INT second" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:483 -+msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 -+msgid "Follow systemd-journal from the last seen position (if available)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 -+msgid "You need to specify either -c CURSOR or -e" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 -+msgid "Cannot open systemd-journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:544 -+msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:195 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 -+msgid "Cannot seek to the end of journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format --msgid "Cannot save journal watch's position: open('%s')" -+msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:251 --msgid "Failed to initialize systemd-journal watch" -+#: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 -+msgid "Cannot read journal data." - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:272 -+#: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" - "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" - "\n" -@@ -1128,59 +1299,144 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:311 --msgid "Start reading systemd-journal from the CURSOR position" -+#: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 -+msgid "Read journal files from all machines" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:312 --msgid "Start reading systemd-journal from the end" -+#: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 -+msgid "Read all journal files from directory at PATH" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:313 --msgid "Follow systemd-journal from the last seen position (if available)" -+#: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 -+#, c-format -+msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:327 --msgid "You need to specify either -c CURSOR or -e" -+#: ../src/plugins/abrt-dump-journal-oops.c:288 -+msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:356 --msgid "Cannot open systemd-journal" -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 -+#, c-format -+msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:359 --msgid "Cannot filter systemd-journal to kernel data only" -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:362 --msgid "Cannot seek to the end of journal" -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:369 --#, c-format --msgid "Failed to start watch from cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:378 --#, c-format --msgid "Failed to set systemd-journal cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:274 -+msgid "Cannot save journal watch's position" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:284 -+#, c-format -+msgid "Cannot save journal watch's position: open('%s')" -+msgstr "" -+ -+#. Only notice because this is expected -+#: ../src/plugins/abrt-journal.c:302 -+#, c-format -+msgid "Not restoring journal watch's position: file '%s' does not exist" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:304 -+#, c-format -+msgid "Cannot restore journal watch's position form file '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:311 -+#, c-format -+msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:317 -+#, c-format -+msgid "" -+"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:325 -+#, c-format -+msgid "Cannot restore journal watch's position: open('%s')" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:334 -+#, c-format -+msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:346 -+#, c-format -+msgid "Failed to move the journal to a cursor from file '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " -@@ -1189,12 +1445,19 @@ msgstr "" - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -+#. - #: ../src/plugins/abrt-retrace-client.c:103 - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " - msgstr "" - -+#: ../src/plugins/abrt-retrace-client.c:131 -+#: ../src/plugins/abrt-retrace-client.c:168 -+#, c-format -+msgid "Can't execute '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 - #: ../src/plugins/abrt-retrace-client.c:677 -@@ -1211,8 +1474,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:1011 - #: ../src/plugins/abrt-retrace-client.c:1070 - #, c-format --msgid "" --"Unexpected HTTP response from server: %d\n" -+msgid "Unexpected HTTP response from server: %d\n" - "%s" - msgstr "" - -@@ -1281,8 +1543,8 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format - msgid "" --"The size of your archive is %s, but the retrace server only accepts archives" --" smaller or equal to %s." -+"The size of your archive is %s, but the retrace server only accepts archives " -+"smaller or equal to %s." - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:640 -@@ -1343,8 +1605,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format --msgid "" --"Task Id: %s\n" -+msgid "Task Id: %s\n" - "Task Password: %s\n" - msgstr "" - -@@ -1354,8 +1615,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format --msgid "" --"Task Status: %s\n" -+msgid "Task Status: %s\n" - "%s\n" - msgstr "" - -@@ -1471,8 +1731,8 @@ msgstr "" - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" - "Needs to downloads debuginfo packages, which might take significant time, " --"and take up disk space. However, unlike RetraceServer, doesn't send coredump" --" to remote machines." -+"and take up disk space. However, unlike RetraceServer, doesn't send coredump " -+"to remote machines." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 -@@ -1481,11 +1741,11 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" --"Uploads coredump to a server, which generates backtrace and returns it. " --"Pros: no need for debuginfo downloads. Retrace server's database of " --"debuginfos is more complete. Retrace server may generate better backtraces. " --"Cons: coredump you upload contains all the data from the crashed program, " --"including your private data, if any." -+"Uploads coredump to a server, which generates backtrace and returns it. Pros:" -+" no need for debuginfo downloads. Retrace server's database of debuginfos is " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " -+"private data, if any." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 -@@ -1506,9 +1766,9 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" --"Write \"insecure\" to allow insecure connection <a " --"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" --" >(warning)</a>" -+"Write \"insecure\" to allow insecure connection <a href=\"https://" -+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(warning)</a>" - msgstr "" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 -@@ -1596,133 +1856,140 @@ msgstr "" - msgid "Failed to wrap TCP socket by SSL." - msgstr "" - --#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 --#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 -+#: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:223 -+#: ../src/plugins/https-utils.c:220 -+msgid "Failed to enable SSL3." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:222 -+msgid "Failed to enable TLS." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:232 -+#: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:240 -+#: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." - msgstr "" - --#: ../src/plugins/https-utils.c:246 -+#: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." - msgstr "" - --#: ../src/plugins/https-utils.c:250 -+#: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." - msgstr "" - --#: ../src/plugins/https-utils.c:257 -+#: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:266 -+#: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:331 -+#: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:368 -+#: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:397 -+#: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." - msgstr "" - --#: ../src/plugins/https-utils.c:422 -+#: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." - msgstr "" - --#: ../src/plugins/https-utils.c:428 -+#: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." - msgstr "" - --#: ../src/plugins/https-utils.c:443 -+#: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." - msgstr "" - --#: ../src/plugins/oops-utils.c:71 -+#: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:205 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:210 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:225 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:233 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" --"An update exists which might fix your problem. You can install it by " --"running: %s. Do you want to continue with reporting the bug?" -+"An update exists which might fix your problem. You can install it by running:" -+" %s. Do you want to continue with reporting the bug?" - msgstr "" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 -@@ -1740,114 +2007,126 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:91 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:130 --msgid "& list [options] [DIR]..." -+#: ../src/cli/list.c:127 -+msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:139 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:141 ../src/cli/list.c:194 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:142 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:143 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:175 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" --"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" -+"The Autoreporting feature is disabled. Please consider enabling it by " -+"issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:186 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:195 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:215 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:70 --msgid "& status [DIR]..." -+#: ../src/cli/status.c:66 -+msgid "& status" - msgstr "" - --#: ../src/cli/status.c:78 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:79 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:104 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1856,24 +2135,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -@@ -1886,8 +2320,8 @@ msgid "" - "user doesn't want to upload his coredump to anywhere the event performs " - "local analysis. Local analysis is run event if remote analysis fails. Pros: " - "no need for debuginfo downloads. Retrace server's database of debuginfos is " --"more complete. Retrace server may generate better backtraces. Cons: coredump" --" you upload contains all the data from the crashed program, including your " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" - -@@ -1944,8 +2378,8 @@ msgstr "" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" --"Checks if there are .vimrc and .gvimrc in your home directory and saves them" --" as user_vimrc and user_gvimrc, respectively." -+"Checks if there are .vimrc and .gvimrc in your home directory and saves them " -+"as user_vimrc and user_gvimrc, respectively." - msgstr "" - - #: ../src/plugins/post_report.xml.in.h:1 -diff --git a/po/sr.po b/po/sr.po -index 12a7cf7..93e82f6 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -4,155 +4,185 @@ - # - # Translators: - # Jiří Moskovčák , 2011 -+# Momcilo Medic , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-09-17 07:58-0400\n" -+"Last-Translator: Momcilo Medic \n" - "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/sr/)\n" - "Language: sr\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Пријављивање проблема" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Види и пријави програмски пад" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "Не могу да преузмем власништво над '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "" -+msgstr "Не могу да отворим директоријум за упис '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" --msgstr "" -+msgstr "Не могу да затворим обавештење: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Упс!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Пријава" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Покрени поново" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Овај проблем је аутоматски пријављен." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Овај проблем ће бити аутоматски пријављен " -+"чим интернет буде доступан." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Молим да контактирате програмера ако " -+"желите пријавити проблем." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Ако желите да помогнете у решавању овог " -+"проблема, молим да пошаљете извештај." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем је " -+"аутоматски пријављен." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем ће бити " -+"пријављен аутоматски чим интернет буде доступан." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Нажалост, изгледа да се догодио проблем. Ако желите да помогнете у решавању " -+"овог проблема, молим да пошаљете извештај." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "Не могу да прикажем обавештење: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "" -+msgstr "Не могу да читам са gio канала: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "" -+msgstr "Не могу да поставим кодирање на gio каналу: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "" -+msgstr "Не могу да укључим неблокирајући режим за gio каналу: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"& [-v] [DIR]...\n" -+"\n" -+"Програмчић који обавештава корисника када ABRT открије нове проблеме\n" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Питати пре крађе директоријума" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Аутоматски пошаљи uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "Скраћено пријављивање" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "Тихо скраћено пријављивање" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -162,6 +192,10 @@ msgid "" - "directory. With this option disabled ABRT will move the problem directory " - "without asking." - msgstr "" -+"ABRT чува податке о проблему у директоријумима. Кад год је ABRT-у неопходан " -+"директоријум за упис, директоријум ће бити премештен са системске локације у " -+"ваш лични директоријум. Када је ова опција онемогућена ABRT ће преместити " -+"директоријум проблема без питања." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -170,6 +204,10 @@ msgid "" - "uReport is sent at beginning of reporting process. With this option enabled " - "uReports are sent automatically immediately after problem detection." - msgstr "" -+"uReport је кратки и потпуно анонимни опис проблема. ABRT користи uReport-ове " -+"за брзо глобално откривање дупликата. У подразумеваној конфигурацији uReport " -+"се шаље на почету процеса пријављивања. Када је ова опција омогућена uReport " -+"се шаљу аутоматски одмах након откривања проблема." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" -@@ -177,71 +215,98 @@ msgid "" - "in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" -+"Када је ова опција омогућена поступак пријављивања започет кликом на Пријави " -+"дугме у балону обавештења о проблему, ће бити прекинут након што је uReport " -+"послат. Можете увек употребити подразумевани прегледач проблема да направите " -+"комплетну пријаву." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 - msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" -+"Када је ова опција омогућена ABRT никад не приказује обавештења о " -+"пријављеним проблемима. Има ефекта само када је омогућено скраћено " -+"пријављивање." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" -+"Када је ова опција омогућена ABRT увек прави карту програмске грешке са " -+"ограниченим приступом ако су откривени могући осетљиви подаци." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "" -+msgstr "Захтевати приватну карту за осетљиве информације" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "" -+msgstr "Обавести о непотпуним проблемима" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" -+"Непотпуни проблеми су откривени када се рачунар искључује или се корисник " -+"одјављује. Да би се пружили корисни извештаји о проблемима, ABRT вам неће " -+"дозволити да пошаљете ове проблеме." -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Затвори" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "" -+msgstr "_Подразумеване вредности" - - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "" -+msgstr "Подешавање пријављивања проблема" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "" -+msgstr "О програму за системско подешавање ABRT-а" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "" -+msgstr "О програму" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" --msgstr "" -+msgstr "Излаз" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Пошаљи упит бази података пакета и сними име пакета и компоненте" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -251,120 +316,117 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "" -+msgstr "Директоријум проблема" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" --msgstr "" -+msgstr "Датотека подешавања" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Користи овај директоријум као RPM корен" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Сачувај метаподатке контејнера" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Корени директоријум за извршавање контејнер команди" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" --msgstr "" -+msgstr "& [опције]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" --msgstr "" -+msgstr "Користи NUM као uid клијента" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" --msgstr "" -+msgstr "Записник у syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" --msgstr "" -+msgstr "Додај имена програма у записник" - - #: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" --msgstr "" -+msgstr "Непозната грешка" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' није исправно име елемента" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' није исправан директоријум проблема" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "" -+msgstr "Неовлашћен" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" -+msgid "'%s' element can't be modified" -+msgstr "'%s' елемент не може бити измењен" -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" -+"Промена власништва директоријума неуспешна. Проверите системске записе за " -+"више детаља." - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "" -+msgstr "Не могу да добијем величину '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" --msgstr "" -+msgstr "Није остало места за проблеме" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "" -+msgstr "Не могу да обришем елемент '%s' из директоријума проблема '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" -+"Име '%s' је изгубљено, молим проверите да ли други сервис са власништвом над " -+"именом није покренут.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "" -+msgstr "Изађи након NUM секунди неактивности" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." --msgstr "" -+msgstr "Овај програм мора бити извршен под root налогом." - - #: ../src/daemon/abrtd.c:389 - msgid "" -@@ -374,31 +436,40 @@ msgid "" - "problem. If you have time and want to help the developers in their effort to " - "sort out this problem, please contact them directly." - msgstr "" -+"Подаци о проблему су непотпуни. Ово се обично дешава када се открије проблем " -+"док се рачунар искључује или се корисник одјављује. Да би се пружили корисни " -+"извештаји о проблемима, ABRT вам неће дозволити да пошаљете овај проблем. " -+"Ако имате времена и желите да помогнете програмерима у њиховом настојању да " -+"реше овај проблем, молим да их контактирате директно." - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "" -+msgstr "Немој покренути као сервис" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" --msgstr "" -+msgstr "Записуј у syslog чак и са -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "" -+msgstr "Изврши EVENT над DIR-ом" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" -+msgstr "Пренеси директно са кориснику" -+ -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" - msgstr "" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" --msgstr "" -+msgstr "Нема слободних радника и бафер је пун. Прескачем архиву '%s'" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -411,86 +482,96 @@ msgid "" - "If UPLOAD_DIRECTORY is not provided, uses a value of\n" - "WatchCrashdumpArchiveDir option from abrt.conf" - msgstr "" -+"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" -+"\n" -+"\n" -+"Прати UPLOAD_DIRECTORY и отпакује архиве које пристижу у DumpLocation\n" -+"назначену у abrt.conf\n" -+"\n" -+"Ако UPLOAD_DIRECTORY није задат, користи вредност\n" -+"WatchCrashdumpArchiveDir опције из abrt.conf" - - #: ../src/daemon/abrt-upload-watch.c:281 - msgid "Daemize" --msgstr "" -+msgstr "Као сервис" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "" -+msgstr "Број упоредних радника. Подразумевано је " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "" -+msgstr "Максимална величина кеша у MiB. Подразумевано је " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " --msgstr "" -+msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Искључује аутентификацију" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat Support корисничко име" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" -+"Red Hat Support лозинка, ако није задата, онда ће бити издат упит за њу" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "uReport SSL путање сертификата или врста сертификата" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "Такође је потребно да назначите --username за --password" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "Можете користити или --username или --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "Можете користити или --username или --anonymous" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "Можете користити или --anonymous или --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" --msgstr "" -+msgstr "Неисправан број аргумената" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "" -+msgstr "Непозната вредност опције: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Лозинка:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Не могу наставити без лозинке\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "HTTP аутентификовано аутоматско пријављивање" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "SSL Client аутентификовано аутоматско пријављивање" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "анонимно аутоматско пријављивање" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,112 +582,127 @@ msgid "" - " UPLOAD_DIR - Directory where uploaded archives are stored\n" - " FILENAME - Uploaded archive file name\n" - msgstr "" -+"Употреба: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -+"\n" -+" -v - Брбљивост\n" -+" -d - Обриши послату архиву\n" -+" ABRT_SPOOL_DIR - Директоријум где се отпакују исправне послате архиве\n" -+" UPLOAD_DIR - Директоријум где се чувају послате архиве\n" -+" FILENAME - Име датотеке послате архиве\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Није директоријум: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Прескачем: '{0}' (почиње косом цртом)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Прескачем: '{0}' (почиње тачком)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Прескачем: '{0}' (садржи ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Прескачем: '{0}' (садржи размак)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Прескачем: '{0}' (садржи таб)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Не могу променити директоријум на '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "" -+msgstr "Непозната врста датотеке: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" --msgstr "" -+msgstr "Не могу да направим радни директоријум у '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" --msgstr "" -+msgstr "Не могу преместити '{0}' на '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" --msgstr "" -+msgstr "Не могу копирати '{0}' на '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" --msgstr "" -+msgstr "Грешка при провери '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" --msgstr "" -+msgstr "Отпакујем '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" --msgstr "" -+msgstr "Не могу да направим '{0}' директоријум" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" --msgstr "" -+msgstr "Не могу да отпакујем '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" --msgstr "" -+msgstr "'{0}' успешно обрађено" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 - msgid "Generating backtrace" --msgstr "" -+msgstr "Стварам стабло позивања" - - #: ../src/lib/problem_api_dbus.c:42 - #, c-format - msgid "Can't connect to system DBus: %s" --msgstr "" -+msgstr "Не могу да се повежем на системски DBus: %s" - - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "" -+msgstr "Не могу да chown-ујем '%s': %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" --msgstr "" -+msgstr "Грешка при брисању директоријума проблема: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "" -+msgstr "Не могу преузети списак проблема од abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не могу да преузмем податке о проблему од abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Не могу испробати да ли елемент постоји преко abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "" -+msgstr "Не могу направити привремену датотеку '%s'" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -614,12 +710,14 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" -+"Не могу да упишем у '%s'. Проблем '%s' неће бити уклоњен из занемарених " -+"проблема '%s'" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "" -+msgstr "Не могу да преименујем '%s' у '%s'. Грешка при уклањању проблема '%s'" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -628,6 +726,11 @@ msgid "" - "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" - "and identifies crash function in problem directory DIR" - msgstr "" -+"& [опције] -d DIR\n" -+"\n" -+"Анализира C/C++ стабло позивања, ствара збир понављања, оцену стабла " -+"позивања\n" -+"и идентификује срушену функцију у директоријуму проблема DIR" - - #. - #. * The parser failed. Compute the duphash from the executable -@@ -637,11 +740,11 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "" -+msgstr "Неуспешна обрада стабла позивања за %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" --msgstr "" -+msgstr "Срушена нит није пронађена" - - #: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" -@@ -649,25 +752,28 @@ msgid "" - "\n" - "Calculates and saves UUID of coredump in problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID coredump-а у директоријуму проблема DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "" -+msgstr "Анализирам coredump '%s'" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format - msgid "Missing build id: %s" --msgstr "" -+msgstr "Недостаје id изградње: %s" - - #: ../src/plugins/abrt-action-analyze-core.in:142 - #, c-format - msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" --msgstr "" -+msgstr "Употреба: %s [-v] [-o OUTFILE] -c COREFILE" - - #: ../src/plugins/abrt-action-analyze-core.in:164 - msgid "COREFILE is not specified" --msgstr "" -+msgstr "COREFILE није назначен" - - #: ../src/plugins/abrt-action-analyze-oops.c:37 - msgid "" -@@ -675,6 +781,9 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH for oops problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID и DUPHASH за директоријум oops проблема DIR" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -683,6 +792,11 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"Стабло развоја не садржи довољно смислених оквира функције да би било " -+"пријављено. Ово је непријатно али не указује обавезно на проблем са вашим " -+"рачунаром. ABRT вам неће дозволити да направите извештај у систему праћења " -+"програмских грешака али можете контактирати програмере језгра преко " -+"електронске поште." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -690,11 +804,14 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID и DUPHASH за директоријум xorg проблема DIR" - - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "" -+msgstr "Модул '%s' је био учитан - нећу пријавити овај крах" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -702,37 +819,75 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH of python crash dumps" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID и DUPHASH за python crash dump-ове" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" --msgstr "" -+msgstr "Употреба: {0} [-v[v]] [--core=VMCORE]" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:79 - msgid "File {0} doesn't exist" --msgstr "" -+msgstr "Датотека {0} не постоји" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "" -+msgstr "Извлачим oops текст из језгра" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Не могу да обрадим {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "" -+msgstr "Не могу да извучем oops поруку: '{0}'" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "" -+msgstr "Oops текст успешно извучен" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" -+"Запис језгра указује на пронађене хардверске грешке.\n" -+"Ово највероватније није програмски проблем.\n" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -740,14 +895,18 @@ msgid "" - "\n" - "Analyzes coredump in problem directory DIR, generates and saves backtrace" - msgstr "" -+"& [опције] -d DIR\n" -+"\n" -+"Анализира coredump у директоријуму проблема DIR, ствара и чува стабло " -+"развоја" - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 - msgid "Additional debuginfo directories" --msgstr "" -+msgstr "Додатни debuginfo директоријуми" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "" -+msgstr "Убиј gdb ако се извршава дуже од NUM секунди" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -755,7 +914,7 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" --msgstr "" -+msgstr "Стабло развоја је направљено и сачувано, %u бајтова" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 - msgid "" -@@ -763,28 +922,32 @@ msgid "" - "\n" - "Creates coredump-level backtrace from core dump and corresponding binary" - msgstr "" -+"& [-v] [-r] -d DIR\n" -+"\n" -+"Ствара стабло развоја coredump нивоа из core dump-а и одговарајуће бинарне " -+"датотеке" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 - msgid "Do not hash fingerprints" --msgstr "" -+msgstr "Немој правити збир отисака" - - #. Let user know what's going on - #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 - msgid "Generating core_backtrace" --msgstr "" -+msgstr "Правим core_backtrace" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 - msgid "Error: GDB did not return any data" --msgstr "" -+msgstr "Грешка: GDB није вратио никакве податке" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 - #, c-format - msgid "Error: %s" --msgstr "" -+msgstr "Грешка: %s" - - #: ../src/plugins/abrt-action-install-debuginfo.in:51 - msgid "Exiting on user command" --msgstr "" -+msgstr "Излазим по команди корисника" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format -@@ -812,48 +975,104 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Употреба: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Инсталира debuginfos за све build-id-ове наведене у BUILD_IDS_FILE\n" -+"у CACHEDIR, користећи TMPDIR као привремени простор за постављање.\n" -+"Старе датотеке у CACHEDIR се бришу све док не постање мањи од SIZE.\n" -+"\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Буди брбљив\n" -+" -y Без интеракције, претпостави 'Да' за сва питања\n" -+" --ids Подразумевано: build_ids\n" -+" --tmpdir Подразумевано: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Подразумевано: /var/cache/abrt-di\n" -+" --size_mb Подразумевано: 4096\n" -+" --pkgmgr Подразумевано: PackageManager из CCpp.conf или 'dnf'\n" -+" -e,--exact Преузми само назначене датотеке\n" -+" --repo Шаблон који се користи када се траже ризнице.\n" -+" Подразумевано: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" --msgstr "" -+msgstr "Не могу да отворим {0}: {1}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" --msgstr "" -+msgstr "Coredump помиње {0} debuginfo датотека, {1} од њих није инсталирано" - - #: ../src/plugins/abrt-action-install-debuginfo.in:215 - msgid "{0} of debuginfo files are not installed" --msgstr "" -+msgstr "{0} debuginfo датотека није инсталирано" - - #: ../src/plugins/abrt-action-install-debuginfo.in:234 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" --msgstr "" -+msgstr "Неисправно подешавање CCpp додатка, неподржан управник пакетима: '%s'" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" --msgstr "" -+msgstr "Недостаје захтевана датотека: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" --msgstr "" -+msgstr "Недостаје debuginfo датотека: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" -+msgstr "Све debuginfo датотеке су доступне" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" -+"Да ли је у реду послати coredump? (Може садржати осетљиве податке). Ако је " -+"ваш одговор 'Не', траг стека ће бити створен локално. (Можда ће преузети " -+"огромну количину података)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" -+"Да ли желите створити траг стека локално? (Можда ће преузети огромну " -+"количину података али извештај не може наставити без трага стека)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -863,172 +1082,180 @@ msgid "" - "SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" -+"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" -+"\n" -+"Брише проблематичне директоријуме (-d) или датотеке (-f) у DIR-екторијумима " -+"све док не буду мањи од SIZE.\n" -+"FILE-ови су очувани (никад обрисани)." - - #: ../src/plugins/abrt-action-trim-files.c:236 - msgid "Delete whole problem directories" --msgstr "" -+msgstr "Обриши све директоријуме проблема" - - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "" -+msgstr "Обриши датотеке унутар овог директоријума" - - #: ../src/plugins/abrt-action-trim-files.c:238 - msgid "Preserve this directory" --msgstr "" -+msgstr "Очувај овај директоријум" - - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "" -+msgstr "Не могу да покренем '%s', порука о грешки је: '%s'" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "" -+msgstr "Није број у датотеци '%s'" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" --msgstr "" -+msgstr "Употреба: %s [-v]" - - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" -+"Не могу да добијем тренутни радни директоријум јер је вероватно обрисан" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "" -+msgstr "Већ је пријављена програмска грешка у вези са овим проблемом:" - - #: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" --msgstr "" -+msgstr "uReport је већ послат, не шаљем га поново" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "Додајем те на CC списак тренутне програмске грешке на bugzilla-и" - - #: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" --msgstr "" -+msgstr "reporter-ureport неуспешан са излазним кодом %d" - - #: ../src/plugins/abrt-gdb-exploitable:529 - msgid "Signal sent by userspace code" --msgstr "" -+msgstr "Сигнал послат од стране кода из корисничког простора" - - #: ../src/plugins/abrt-gdb-exploitable:533 - msgid "Signal sent by timer/IO/async event" --msgstr "" -+msgstr "Сигнал послат од стране timer/IO/async догађаја" - - #: ../src/plugins/abrt-gdb-exploitable:541 - msgid "Signal has siginfo.si_code = SI_USER" --msgstr "" -+msgstr "Сигнал има siginfo.si_code = SI_USER" - - #: ../src/plugins/abrt-gdb-exploitable:544 - msgid "Signal due to write to closed pipe" --msgstr "" -+msgstr "Сигнал приспео за упис на затворен канал" - - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "" -+msgstr "Сигнал послат од стране тастатуре" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 - msgid "Job control signal sent by kernel" --msgstr "" -+msgstr "Сигнал контроле послова послат од кернела" - - #: ../src/plugins/abrt-gdb-exploitable:558 - #: ../src/plugins/abrt-gdb-exploitable:587 - msgid "Signal sent by window resize" --msgstr "" -+msgstr "Сигнал послат променом величине прозора" - - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "" -+msgstr "Сигнал послат истицањем аларма(N)" - - #: ../src/plugins/abrt-gdb-exploitable:583 - msgid "Signal due to write to broken pipe" --msgstr "" -+msgstr "Сигнал приспео за упис на покварен канал" - - #: ../src/plugins/abrt-gdb-exploitable:607 - msgid "ABRT signal (abort() was called?)" --msgstr "" -+msgstr "ABRT сигнал (abort() је позван?)" - - #: ../src/plugins/abrt-gdb-exploitable:616 - msgid "XCPU signal (over CPU time limit)" --msgstr "" -+msgstr "XCPU сигнал (преко CPU временског ограничења)" - - #: ../src/plugins/abrt-gdb-exploitable:620 - msgid "XFSZ signal (over file size limit)" --msgstr "" -+msgstr "XFSZ сигнал (преко ограничења величине датотеке)" - - #: ../src/plugins/abrt-gdb-exploitable:624 - msgid "TRAP signal (can be a bug in a debugger/tracer)" --msgstr "" -+msgstr "TRAP сигнал (може бити програмска грешка у октлањачу грешака/трагачу)" - - #: ../src/plugins/abrt-gdb-exploitable:628 - msgid "SYS signal (unknown syscall was called?)" --msgstr "" -+msgstr "SYS сигнал (непознат системски позив је позван?)" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" --msgstr "" -+msgstr "Аритметичка грешка" - - #: ../src/plugins/abrt-gdb-exploitable:637 - msgid "Division by zero" --msgstr "" -+msgstr "Дељење нулом" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "" -+msgstr "Неправилна инструкција (скок на насумичну адресу?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" --msgstr "" -+msgstr "Сигнал који није узрокован отказивањем" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" --msgstr "" -+msgstr "Преливање стека" - - #: ../src/plugins/abrt-gdb-exploitable:656 - msgid "Write to an invalid address" --msgstr "" -+msgstr "Упис на неисправну адресу" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" --msgstr "" -+msgstr "Подрутина се вратила на неисправну адресу (оштећен стек?)" - - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 - msgid "Jump to an invalid address" --msgstr "" -+msgstr "Скок на неисправну адресу" - - #: ../src/plugins/abrt-gdb-exploitable:674 - msgid "" - "Access past the end of mapped file, invalid address, unaligned access, etc" - msgstr "" -+"Приступ након завршетка мапиране датотеке, неисправна адреса, приступ ван " -+"поравнања, итд" - - #: ../src/plugins/abrt-gdb-exploitable:693 - msgid "Can't get signal no and do exploitability analysis\n" --msgstr "" -+msgstr "Не могу да примим сигнал не и урадим анализу злоупотребе\n" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "" -+msgstr "Вероватни узрок отказивања:" - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " --msgstr "" -+msgstr "Рејтинг злоупотребе (скала 0-9):" - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "" -+msgstr "Тренутна инструкција:" - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" --msgstr "" -+msgstr "Анализа злоупотребе није ништа пронашла\n" - - #: ../src/plugins/abrt-watch-log.c:142 - msgid "" -@@ -1036,10 +1263,13 @@ msgid "" - "\n" - "Watch log file FILE, run PROG when it grows or is replaced" - msgstr "" -+"& [-vs] [-F STR]... FILE PROG [ARGS]\n" -+"\n" -+"Прати датотеку записа FILE, изврши PROG када порасте или буде замењена" - - #: ../src/plugins/abrt-watch-log.c:154 - msgid "Don't run PROG if STRs aren't found" --msgstr "" -+msgstr "Немој покренути PROG ако STR-ови нису пронађени" - - #: ../src/plugins/abrt-dump-oops.c:77 - msgid "" -@@ -1047,11 +1277,14 @@ msgid "" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" -+"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" -+"\n" -+"Извуци oops из FILE (или стандардног улаза)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "" -+msgstr "Испиши пронађене oops-еве на стандардни излаз" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1059,62 +1292,70 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:102 - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" --msgstr "" -+msgstr "Направи нови директоријум проблема у DIR за сваки пронађени oops" - - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" --msgstr "" -+msgstr "Исто као -d DumpLocation, DumpLocation је назначена у abrt.conf" - - #: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" --msgstr "" -+msgstr "Сачувај извучене информације у PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" --msgstr "" -+msgstr "Учини директоријум проблема читљивим за свет" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" --msgstr "" -+msgstr "Успори стварање директоријума проблема на један по секунди" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" --msgstr "" -+msgstr "Испиши текст(ове) претраге на стандардни излаз и изађи" - - #: ../src/plugins/abrt-dump-oops.c:127 - #: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" -+msgstr "Неуспешна изградња регуларног израза" -+ -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Неуспешно преузимање свих неопходних информација од journald-а" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Не чувам поновне крахове након %ds (граница је %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "Неуспешно чување података откривеног проблема у abrt бази података" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "Неуспешна иницијализација systemd-journal надзора" - - #: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" -@@ -1129,62 +1370,80 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Извуци coredump-ове из systemd-journal\n" -+"\n" -+"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" -+"\n" -+"-e је корисно само за -f зато што праћење дневника почиње читањем \n" -+"целог дневника ако последња прегледана позиција није доступна.\n" -+"\n" -+"Последња прегледана позиција је сачувана у " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "Направи нови директоријум проблема у DIR за сваки coredump" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "Почни читање systemd-journal од позиције CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "Почни читање systemd-journal од краја" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Успори стварање директоријума проблема на један по INT секунди" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Исто као -t INT, INT је назначен у plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" --msgstr "" -+msgstr "Прати systemd-journal од последње виђене позиције (ако је доступна)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "Потребно је да назначите или -c CURSOR или -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "Не могу да отворим systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" --msgstr "" -+msgstr "Не могу да филтрирам systemd-journal на само systemd-coredump податке" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "Не могу да пређем на крај дневника" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "Неуспешно постављање systemd-journal курсора '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "Не могу да прочитам податке дневника." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1199,97 +1458,171 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Извуци oops из systemd-journal\n" -+"\n" -+"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" -+"\n" -+"-e је корисно само за -f зато што праћење дневника почиње читањем \n" -+"целог дневника ако последња прегледана позиција није доступна.\n" -+"\n" -+"Последња прегледана позиција је сачувана у " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Прочитај датотеке дневника са свих машина" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Прочитај све датотеке дневника из директоријума на PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Не могу да иницијализујем systemd-journal у директоријуму '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" --msgstr "" -+msgstr "Не могу да филтрирам systemd-journal на само податке о језгру" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" -+msgstr "Неуспешно започињање прегледа од курсора '%s'" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" -+"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" -+"\n" -+"Извуци Xorg крах из FILE (или стандардног улаза)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" --msgstr "" -+msgstr "Испиши пронађене податке о краху на стандардни излаз" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" -+msgstr "Направи директоријум проблема у DIR за сваки пронађени крах" -+ -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "" -+msgstr "Не могу да снимим позицију прегледача дневника" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" --msgstr "" -+msgstr "Не могу да снимим позицију прегледача дневника: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" --msgstr "" -+msgstr "Не враћам позицију прегледања дневника: датотека '%s' не постоји" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" --msgstr "" -+msgstr "Не могу да вратим позицију прегледања дневника из датотеке '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" -+"Не могу да вратим позицију прегледања дневника: путања '%s' није редовна " -+"датотека" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" -+"Не могу да вратим позицију прегледања дневника: датотека '%s' превазилази " -+"%dB ограничење величине" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" --msgstr "" -+msgstr "Не могу да вратим позицију прегледања дневника: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -+"Не могу да вратим позицију прегледања дневника: не могу прочитати целу " -+"датотеку '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "" -+msgstr "Неуспешно померање дневника на курсор из датотеке '%s'" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." - msgstr "" -+"Сервер за поновни траг не може бити употревљен, зато што је крах превелик. " -+"Покушајте локално поновно трагање." - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -@@ -1298,13 +1631,13 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " --msgstr "" -+msgstr "Не могу направити привремену датотеку у " - - #: ../src/plugins/abrt-retrace-client.c:131 - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "" -+msgstr "Не могу извршити '%s'" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1312,7 +1645,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:842 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d" --msgstr "" -+msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d" - - #: ../src/plugins/abrt-retrace-client.c:223 - #: ../src/plugins/abrt-retrace-client.c:412 -@@ -1324,7 +1657,8 @@ msgstr "" - #, c-format - msgid "Unexpected HTTP response from server: %d\n" - "%s" --msgstr "" -+msgstr "Неочекивани HTTP одговор од сервера: %d\n" -+"%s" - - #: ../src/plugins/abrt-retrace-client.c:232 - #: ../src/plugins/abrt-retrace-client.c:755 -@@ -1333,7 +1667,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:992 - #: ../src/plugins/abrt-retrace-client.c:1062 - msgid "Invalid response from server: missing HTTP message body." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје HTTP тело поруке." - - #: ../src/plugins/abrt-retrace-client.c:424 - #, c-format -@@ -1341,24 +1675,27 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" -+"Сервер поновног трага не успева да обради пакет '%s.%s.'\n" -+"Да ли је то део званичних '%s' ризница?" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" --msgstr "" -+msgstr "Захтевам поставке сервера" - - #: ../src/plugins/abrt-retrace-client.c:452 - msgid "The server is fully occupied. Try again later." --msgstr "" -+msgstr "Сервер је потпуно заузет. Покушајте поново касније." - - #: ../src/plugins/abrt-retrace-client.c:453 - msgid "The server denied your request." --msgstr "" -+msgstr "Сервер је одбио ваш захтев." - - #: ../src/plugins/abrt-retrace-client.c:484 - #: ../src/plugins/abrt-retrace-client.c:500 - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" -+"'%s' мора бити редовна датотека да бисте користили сервер за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1366,27 +1703,29 @@ msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." - msgstr "" -+"Величина вашег краха је %s, али сервер за поновни траг прихвата само крахове " -+"мање или једнаке са %s." - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." --msgstr "" -+msgstr "Сервер не подржава xz-компресоване tarball-ове." - - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "" -+msgstr "Издање '%s' није подржано од стране сервера за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." --msgstr "" -+msgstr "Сервер не може да обради ваш захтев." - - #: ../src/plugins/abrt-retrace-client.c:600 - msgid "Unknown package sent to Retrace server." --msgstr "" -+msgstr "Непознат пакет послат серверу за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:609 - msgid "Preparing an archive to upload" --msgstr "" -+msgstr "Припремање архиве за слање" - - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format -@@ -1394,187 +1733,204 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" -+"Величина ваше архиве је %s, али сервер за поновни траг прихвата само архиве " -+"мање или једнаке са %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "Послаћете %s. Наставити?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" --msgstr "" -+msgstr "Отказано од стране корисника" - - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "Шаљем %s\n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format - msgid "Uploading %d%%\n" --msgstr "" -+msgstr "Шаљем %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "" -+msgstr "Неуспешно читање са тунела" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format - msgid "Failed to send data: NSS error %d (%s): %s" --msgstr "" -+msgstr "Неуспешно слање података: NSS грешка %d (%s): %s" - - #: ../src/plugins/abrt-retrace-client.c:745 - msgid "Upload successful" --msgstr "" -+msgstr "Успешно слање" - - #: ../src/plugins/abrt-retrace-client.c:767 - msgid "" - "Your problem directory is corrupted and can not be processed by the Retrace " - "server." - msgstr "" -+"Ваш директоријум проблема је оштећен и не може бити обрађен од стране " -+"сервера за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:769 - msgid "" - "The archive contains malicious files (such as symlinks) and thus can not be " - "processed." - msgstr "" -+"Архива садржи злонамерне датотеке (као што су симболички линкови) те не може " -+"бити обрађена." - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје X-Task-Id." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" --msgstr "" -+msgstr "Започет посао поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format - msgid "Task Id: %s\n" - "Task Password: %s\n" --msgstr "" -+msgstr "Id задатка: %s\n" -+"Лозинка задатка: %s\n" - - #: ../src/plugins/abrt-retrace-client.c:866 - msgid "Invalid response from server: missing X-Task-Status." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје X-Task-Status." - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format - msgid "Task Status: %s\n" - "%s\n" --msgstr "" -+msgstr "Стање задатка: %s\n" -+"%s\n" - - #: ../src/plugins/abrt-retrace-client.c:909 - #: ../src/plugins/abrt-retrace-client.c:983 - #: ../src/plugins/abrt-retrace-client.c:1053 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d." --msgstr "" -+msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d." - - #: ../src/plugins/abrt-retrace-client.c:1170 - msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" -+"Неуспешан поновни траг. Покушајте поново касније и ако и даље постоји " -+"проблем молим да га пријавите." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" --msgstr "" -+msgstr "записник у syslog" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" --msgstr "" -+msgstr "дозволи несигурне везе до сервера поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:1221 - msgid "" - "do not check whether retrace server is able to process given package before " - "uploading the archive" - msgstr "" -+"немој проверавати да ли је сервер поновног трага способан да обради дати " -+"пакет пре но што се пошаље архива" - - #: ../src/plugins/abrt-retrace-client.c:1224 - msgid "retrace server URL" --msgstr "" -+msgstr "URL сервера поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:1226 - msgid "retrace server port" --msgstr "" -+msgstr "порт сервера поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:1228 - msgid "(debug) show received HTTP headers" --msgstr "" -+msgstr "(откривање програмских грешака) прикажи примљена HTTP заглавља" - - #: ../src/plugins/abrt-retrace-client.c:1229 - msgid "For create and batch operations" --msgstr "" -+msgstr "За стварање и обједињене операције" - - #: ../src/plugins/abrt-retrace-client.c:1231 - msgid "read data from ABRT problem directory" --msgstr "" -+msgstr "читај податке из ABRT директоријума проблема" - - #: ../src/plugins/abrt-retrace-client.c:1233 - msgid "read data from coredump" --msgstr "" -+msgstr "читај податке из coredump-а" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" --msgstr "" -+msgstr "Пауза за операције упита" - - #: ../src/plugins/abrt-retrace-client.c:1237 - msgid "(debug) do not delete temporary archive created from dump dir in " - msgstr "" -+"(отклањање програмских грешака) немој брисати привремене архиве створене из " -+"директоријума излаза у " - - #: ../src/plugins/abrt-retrace-client.c:1239 - msgid "For status, backtrace, and log operations" --msgstr "" -+msgstr "За стање, стабло позивања и запис операција" - - #: ../src/plugins/abrt-retrace-client.c:1241 - msgid "id of your task on server" --msgstr "" -+msgstr "id вашег задатка на серверу" - - #: ../src/plugins/abrt-retrace-client.c:1243 - msgid "password of your task on server" --msgstr "" -+msgstr "лозинка вашег задатка на серверу" - - #: ../src/plugins/abrt-retrace-client.c:1247 - msgid "" - "abrt-retrace-client [options]\n" - "Operations: create/status/backtrace/log/batch/exploitable" - msgstr "" -+"abrt-retrace-client [опције]\n" -+"Операције: create/status/backtrace/log/batch/exploitable" - - #: ../src/plugins/abrt-retrace-client.c:1292 - #: ../src/plugins/abrt-retrace-client.c:1298 - msgid "Either problem directory or coredump is needed." --msgstr "" -+msgstr "Потребан је или директоријум проблема или coredump." - - #: ../src/plugins/abrt-retrace-client.c:1304 - #: ../src/plugins/abrt-retrace-client.c:1312 - #: ../src/plugins/abrt-retrace-client.c:1320 - #: ../src/plugins/abrt-retrace-client.c:1328 - msgid "Task id is needed." --msgstr "" -+msgstr "Id задатка је неопходан." - - #: ../src/plugins/abrt-retrace-client.c:1306 - #: ../src/plugins/abrt-retrace-client.c:1314 - #: ../src/plugins/abrt-retrace-client.c:1322 - #: ../src/plugins/abrt-retrace-client.c:1330 - msgid "Task password is needed." --msgstr "" -+msgstr "Лозинка задатка је неопходна." - - #: ../src/plugins/abrt-retrace-client.c:1334 - #, c-format - msgid "Unknown operation: %s." --msgstr "" -+msgstr "Непозната операција: %s." - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 - msgid "Local GNU Debugger" --msgstr "" -+msgstr "Локални GNU програм за отклањање програмских грешака" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" - msgstr "" -+"Преузми debuginfo пакете и створи стабло позивања локално користећи GDB" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" -@@ -1582,10 +1938,13 @@ msgid "" - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." - msgstr "" -+"Потребно је преузети debuginfo пакете, што може захтевати значајан период " -+"времена, и заузимати простор на диску. Међутим, за разлику од RetraceServer-" -+"а, не шаље coredump на удаљене машине." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" --msgstr "" -+msgstr "Пошаљи coredump на удаљени сервер за поновни траг на анализу" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" -@@ -1595,22 +1954,27 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Предности: " -+"нема потребе за преузимањем debuginfo-а. База података debuginfo-а сервера " -+"за поновни траг је комплетнија. Сервер за поновни траг може створити боља " -+"стабла позивања. Мане: coredump који шаљете садржи све податке о срушеном " -+"програму, укључујући и ваше приватне податке, ако их има." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 - msgid "Retrace server URL" --msgstr "" -+msgstr "URL сервера поновног трага" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 - msgid "Address of the retrace server" --msgstr "" -+msgstr "Адреса сервера поновног трага" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 - msgid "Insecure" --msgstr "" -+msgstr "Несигурно" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 - msgid "Whether or not to use insecure connection" --msgstr "" -+msgstr "Да ли да користи несигурну везу или не" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" -@@ -1618,227 +1982,244 @@ msgid "" - "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " - ">(warning)</a>" - msgstr "" -+"Напиши \"insecure\" да дозволите несигурну везу <a href=\"https://" -+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(warning)</a>" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 - msgid "Collect .xsession-errors" --msgstr "" -+msgstr "Скупи .xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" --msgstr "" -+msgstr "Сачувај значајне линије из ~/.xsession-errors датотеке" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:3 - msgid "" - "Scans through ~/.xsession-errors file and saves those lines which contain " - "executable's name. The result is saved as 'xsession_errors' element." - msgstr "" -+"Скенира кроз ~/.xsession-errors датотеку и снима оне линије које садрже име " -+"извршне датотеке. Резултат је сачуван као 'xsession_errors' елемент." - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." --msgstr "" -+msgstr "Догодила се грешка са серверске стране." - - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "" -+msgstr "На серверској страни се догодила грешка на '%s'" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" --msgstr "" -+msgstr "Догодила се грешка при повезивању на сервер" - - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "" -+msgstr "Грешка се догодила при повезивању на '%s'" - - #: ../src/plugins/https-utils.c:97 - #, c-format - msgid "Issuer certificate is invalid: '%s'." --msgstr "" -+msgstr "Издавач сертификата није исправан: '%s'." - - #: ../src/plugins/https-utils.c:100 - #, c-format - msgid "Certificate is signed by an untrusted issuer: '%s'." --msgstr "" -+msgstr "Сертификат је потписан од издавача који није поуздан: '%s'." - - #: ../src/plugins/https-utils.c:103 - #, c-format - msgid "Certificate subject name '%s' does not match target host name '%s'." - msgstr "" -+"Име наслова сертификата '%s' се не подудара са циљним именом домаћина '%s'." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." --msgstr "" -+msgstr "Удаљени сертификат је истекао." - - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "" -+msgstr "Издавач сертификата није препознат: '%s'." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "" -+msgstr "Примљен лош сертификат. Наслов '%s', издавач '%s'." - - #: ../src/plugins/https-utils.c:149 - #, c-format - msgid "Failed to get slot 'PEM Token #0': %d." --msgstr "" -+msgstr "Грешка при примању слота 'PEM Token #0': %d." - - #: ../src/plugins/https-utils.c:182 - #, c-format - msgid "Can't resolve host name '%s'. NSS error %d." --msgstr "" -+msgstr "Не могу да разрешим име домаћина '%s'. NSS грешка %d." - - #. Host exists, but has neither IPv4 nor IPv6?? - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "" -+msgstr "Не могу да разрешим име домаћина '%s'." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." --msgstr "" -+msgstr "Неуспешно постављање блокирајућег режима." - - #: ../src/plugins/https-utils.c:213 - msgid "Failed to wrap TCP socket by SSL." --msgstr "" -+msgstr "Неуспешно умотавање TCP прикључка SSL-ом." - - #: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." --msgstr "" -+msgstr "Неуспешно омогућавање клијентског руковања са SSL прикључком." - - #: ../src/plugins/https-utils.c:220 - msgid "Failed to enable SSL3." --msgstr "" -+msgstr "Неуспешно омогућавање SSL3." - - #: ../src/plugins/https-utils.c:222 - msgid "Failed to enable TLS." --msgstr "" -+msgstr "Неуспешно омогућавање TLS-а." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "" -+msgstr "Неуспешно постављање URL-а на SSL прикључак." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "" -+msgstr "Не могу да се повежем на '%s'" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "" -+msgstr "Неуспешно постављање прикључка сертификата." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." --msgstr "" -+msgstr "Неуспешно постављање руковања повратног позива." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "" -+msgstr "Неуспешно поновно постављање руковања." - - #: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." --msgstr "" -+msgstr "Неуспешно завршавање SSL руковања: NSS грешка %d." - - #: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." --msgstr "" -+msgstr "Неуспешно затварање SSL прикључка." - - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "" -+msgstr "Лоше HTTP заглавље одговора : '%s'" - - #: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." --msgstr "" -+msgstr "Примање података неуспешно: NSS грешка %d." - - #: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." --msgstr "" -+msgstr "Лош збирни одговор." - - #: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." --msgstr "" -+msgstr "Неуспешна иницијализација NSS-а." - - #: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." --msgstr "" -+msgstr "Неуспешна иницијализација сигурносног модула." - - #: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." --msgstr "" -+msgstr "Неуспешно искључивање NSS-а." - - #: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" --msgstr "" -+msgstr "Спавање %d секунди" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" -+"Догодио се проблем са кернелом због неисправног BIOS-а. Нажалост, такви " -+"проблеми не могу бити поправљени од стране кернел програмера." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" -+"Догодио се проблем са кернелом, али ваш хардвер није подржан, стога кернел " -+"програмери не могу да поправе овај проблем." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" -+"Догодио се проблем са кернелом, али ваш кернел је укаљан (flags:%s). Кернел " -+"програмери не могу да установе дијагнозу укаљаних извештаја." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." --msgstr "" -+msgstr "Укаљани модули: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" --msgstr "" -+msgstr "Списак идентификатора програмских грешака" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" --msgstr "" -+msgstr "Назначите URL bodhi сервера" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" --msgstr "" -+msgstr "Назначите издање" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" -+"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" -+"\n" -+"Потражите ажурирања на bodhi серверу" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" --msgstr "" -+msgstr "Тражим ажурирања" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" --msgstr "" -+msgstr "Нису пронађена ажурирања за овај пакет" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" --msgstr "" -+msgstr "Локална верзија пакета је новија него доступна ажурирања" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" - " %s. Do you want to continue with reporting the bug?" - msgstr "" -+"Постоји ажурирање које би могло решити ваш проблем. Можете га инсталирати " -+"извршавањем: %s. Да ли желите наставити са пријавом програмске грешке?" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 - msgid "" -@@ -1846,148 +2227,323 @@ msgid "" - "\n" - "Scans files for split oops message. Can print and/or delete them." - msgstr "" -+"& [-v] [-od] ДАТОТЕКА...\n" -+"\n" -+"Претражује датотеке за раздељеном oops поруком. Може је исписати и/или " -+"обрисати." - - #: ../src/hooks/abrt-merge-pstoreoops.c:97 - msgid "Print found oopses" --msgstr "" -+msgstr "Исписује пронађене oops-еве" - - #: ../src/hooks/abrt-merge-pstoreoops.c:98 - msgid "Delete files with found oopses" --msgstr "" -+msgstr "Обриши датотеке са пронађеним oops-евима" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "" -+msgstr "'%s' показује на више од једног директоријума проблема" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" --msgstr "" -+msgstr "Листај проблеме [у DIR-овима]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" --msgstr "" -+msgstr "Уклони директоријум проблема DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" --msgstr "" -+msgstr "Анализирај и пријави податке проблема у DIR-у" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" --msgstr "" -+msgstr "Прикажи информације о DIR-у" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" --msgstr "" -+msgstr "Прикажи број недавних крахова" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" --msgstr "" -+msgstr "Обради више проблема" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" --msgstr "" -+msgstr "Погледајте 'abrt-cli КОМАНДА --help' за више информација" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [опције]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" --msgstr "" -+msgstr "Прикажи само проблеме који нису пријављени" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" --msgstr "" -+msgstr "Прикажи детаљан извештај" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" --msgstr "" -+msgstr "Прикажи само проблеме млађе од наведеног момента у времену" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" --msgstr "" -+msgstr "Прикажи само проблеме старије од наведеног момента у времену" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " - "issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" -+"Могућност аутоматског пријављивања је онемогућена. Молим да размотрите " -+"омогућавање исте извршавањем\n" -+"'abrt-auto-reporting enabled' као корисник са root привилегијама\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." --msgstr "" -+msgstr "& info [опције] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" --msgstr "" -+msgstr "Текст већи од овога ће бити приказан сажето" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "" -+msgstr "Не постоји директоријум проблема '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" --msgstr "" -+msgstr "Прикажи само број проблема без икакве поруке" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" --msgstr "" -+msgstr "Прикажи само проблеме млађе од наведеног момента у времену" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" -+"ABRT је открио %u проблем(а). За више информација извршите: abrt-cli " -+"list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" --msgstr "" -+msgstr "Уклањам '%s'" -+ -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [опције] DIR..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Уклони PROBLEM_DIR након пријављивања" - - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" --msgstr "" -+msgstr "Акције: уклони(rm), инфо(i), прескочи(s):" - - #: ../src/cli/process.c:66 - msgid "Actions: remove(rm), report(e), info(i), skip(s):" --msgstr "" -+msgstr "Акције: уклони(rm), извештај(e), инфо(i), прескочи(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "" -+msgstr "Пријављујем '%s'" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" --msgstr "" -+msgstr "За следећи проблем притисните ЕНТЕР:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." --msgstr "" -+msgstr "Без --since аргумента, пролази кроз све откривене проблеме." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" -+msgstr "Означава само проблеме откривене након момента у времену" -+ -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" - msgstr "" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 -@@ -1995,6 +2551,8 @@ msgid "" - "Send core dump to remote retrace server for analysis or perform local " - "analysis if the remote analysis fails" - msgstr "" -+"Пошаљи coredump на удаљени сервер за поновни траг на анализу или изврши " -+"локалну анализу ако удаљена анализа није успешна" - - #: ../src/plugins/analyze_CCpp.xml.in.h:2 - msgid "" -@@ -2006,72 +2564,89 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Ако " -+"корисник не жели да пошаље свој coredump нигде овај догађај ће извршити " -+"локалну анализу. Локална анализа се извршава и у случају да удаљена анализа " -+"није успешна. Предности: нема потребе за преузимањем debuginfo-а. База " -+"података debuginfo-а сервера за поновни траг је комплетнија. Сервер за " -+"поновни траг може створити боља стабла позивања. Мане: coredump који шаљете " -+"садржи све податке о срушеном програму, укључујући и ваше приватне податке, " -+"ако их има." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" --msgstr "" -+msgstr "Анализирај VM језгро" - - #: ../src/plugins/analyze_VMcore.xml.in.h:2 - msgid "" - "Install kernel debuginfo packages, generate kernel log and oops message" - msgstr "" -+"Инсталирај кернел debuginfo пакете, створи запис кернела и oops поруку" - - #: ../src/plugins/analyze_VMcore.xml.in.h:3 - msgid "" - "Needs to install kernel debuginfo packages, which might take significant " - "time, and take up disk space." - msgstr "" -+"Потребно је инсталирати кернел debuginfo пакете, што може захтевати значајан " -+"период времена, и заузимати простор на диску." - - #: ../src/plugins/collect_GConf.xml.in.h:1 - msgid "Collect GConf configuration" --msgstr "" -+msgstr "Сакупи GConf подешавања" - - #: ../src/plugins/collect_GConf.xml.in.h:2 - msgid "Save configuration from application's GConf directory" --msgstr "" -+msgstr "Сачувај подешавања из GConf директоријума програма" - - #: ../src/plugins/collect_GConf.xml.in.h:3 - msgid "" - "Runs gconftool-2 --recursive-list /apps/executable and saves it as " - "'gconf_subtree' element." - msgstr "" -+"Извршава gconftool-2 --recursive-list /apps/executable и чува га као " -+"'gconf_subtree' елеменат." - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" --msgstr "" -+msgstr "Сакупља датотеке за подешавање vim-а на системском нивоу" - - #: ../src/plugins/collect_vimrc_system.xml.in.h:2 - msgid "Save /etc/vimrc and /etc/gvimrc" --msgstr "" -+msgstr "Сачувај /etc/vimrc и /etc/gvimrc" - - #: ../src/plugins/collect_vimrc_system.xml.in.h:3 - msgid "" - "Checks if there are vimrc and gvimrc files in /etc and saves them as " - "system_vimrc and system_gvimrc, respectively." - msgstr "" -+"Проверава да ли постоје vimrc и gvimrc датотеке у /etc и чува их као " -+"system_vimrc и system_gvimrc, респективно." - - #: ../src/plugins/collect_vimrc_user.xml.in.h:1 - msgid "Collect yours vim configuration files" --msgstr "" -+msgstr "Скупља ваше vim датотеке за подешавање" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:2 - msgid "Save .vimrc and .gvimrc from your home directory" --msgstr "" -+msgstr "Чува .vimrc и .gvimrc из вашег личног директоријума" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" - "Checks if there are .vimrc and .gvimrc in your home directory and saves them " - "as user_vimrc and user_gvimrc, respectively." - msgstr "" -+"Проверава да ли постоје vimrc и gvimrc датотеке у вашем личном директоријуму " -+"и чува их као user_vimrc и user_gvimrc, респективно." - - #: ../src/plugins/post_report.xml.in.h:1 - msgid "Post report" --msgstr "" -+msgstr "Након извештаја" - - #: ../src/plugins/post_report.xml.in.h:2 - msgid "Executed after the reporting is finished" --msgstr "" -+msgstr "Извршава се након што је пријављивање завршено" - - #: ../src/plugins/post_report.xml.in.h:3 - msgid "Used for updating of the databases" --msgstr "" -+msgstr "Користи се за освежавање база података" -diff --git a/po/sr@latin.po b/po/sr@latin.po -index 962be2c..43f6459 100644 ---- a/po/sr@latin.po -+++ b/po/sr@latin.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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: sr@latin\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +29,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Prijava" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +163,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +198,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +259,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +278,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +296,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -296,60 +322,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +373,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +399,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +444,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +523,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +608,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +668,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +757,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +903,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1154,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1074,16 +1165,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1092,8 +1185,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1113,6 +1210,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1136,11 +1234,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1154,16 +1254,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1171,18 +1274,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1201,14 +1307,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1217,70 +1326,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1777,63 +1936,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1855,65 +2014,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1921,49 +2081,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1972,24 +2142,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/sv.po b/po/sv.po -index 156d987..e3af612 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -31,16 +31,16 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-26 04:08-0400\n" -+"PO-Revision-Date: 2015-08-01 11:41-0400\n" - "Last-Translator: Göran Uddeborg \n" - "Language-Team: Swedish \n" - "Language: sv\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -50,34 +50,34 @@ msgstr "Problemrapportering" - msgid "View and report application crashes" - msgstr "Visa och rapportera programkrascher" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan inte ta över ägandet av ”%s”" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Kan inte öppna katalog för att skriva '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Kan inte stänga notifikation: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ojdå!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapport" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Starta om" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -86,7 +86,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Problemet har " - "rapporterats automatiskt." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -95,8 +95,8 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Problemet kommer " - "rapporteras när internet kan nås." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -105,7 +105,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Kontakta utvecklaren om " - "du vill rapportera saken." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -114,7 +114,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Om du vill hjälpa till " - "att lösa problement, skicka då en rapport." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -122,7 +122,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " - "Problemet har rapporterats automatiskt." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -130,7 +130,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " - "Problemet kommer rapporteras när internet kan nås." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -138,28 +138,28 @@ msgstr "" - "Vi är ledsna, men det verkar som att ett problem uppstod. OM du vill hjälpa " - "till att lösa problemet, skicka då en rapport." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Kan inte visa notifiering: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Kan inte läsa från gio-kanal: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Kan inte sätta kodning på gio-kanal: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Kan inte slå på ej blockerande läge för gio-kanal: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -169,6 +169,17 @@ msgstr "" - "\n" - "Miniprogram som meddelar användare när nya problem upptäcks av ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Fråga före en katalog stjäls" -@@ -190,13 +201,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Filen med minnesdumpen behövs för att skapa stackspår vilket är en åtgärd " --"som kostar tid och utrymme. ABRT tillhandahåller en tjänst som genererar " --"stackspåret från en minnesdump men du måste skicka minnesdumpen till denna " --"tjänst. Med detta alternativ avaktiverat kommer ABRT skicka minnesdumpen " --"utan att fråga." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -243,10 +251,6 @@ msgstr "" - "är aktiverat." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Fråga före minnesutskrifter skickas" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -254,15 +258,15 @@ msgstr "" - " Med denna flagga aktiverad skapar ABRT alltid felrapporter med begränsad " - "åtkomst om eventuellt känsliga data detekteras." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Begär privat rapport för känslig information" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifiera om ofullständiga problem" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -272,6 +276,22 @@ msgstr "" - "loggar ut. För att kunna skapa användbara problemrapporter kommer ABRT inte " - "tillåta dig att skicka dessa problem." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Stäng" -@@ -297,7 +317,7 @@ msgstr "Om" - msgid "Quit" - msgstr "Avsluta" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -307,7 +327,7 @@ msgstr "" - "\n" - "Fråga paketdatabasen och spara paket- och komponentnamn" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -319,11 +339,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemkatalog" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurationsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Använd denna katalog som RPM-rot" - -@@ -339,24 +359,25 @@ msgstr "& [-v] -d KAT\n" - msgid "Root directory for running container commands" - msgstr "Rotkatalogen för att köra behållarkommandon" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [flaggor]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Använd NUM som klient-uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logga till syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lägg till programnamn till loggen" - -@@ -364,62 +385,52 @@ msgstr "Lägg till programnamn till loggen" - msgid "Unknown error" - msgstr "Okänt fel" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "”%s” är inte en giltig problemkatalog" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' är inte ett giltigt elementnamn" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Elementet '%s' kan inte modifieras" -+msgid "'%s' is not a valid problem directory" -+msgstr "”%s” är inte en giltig problemkatalog" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Inte auktoriserad" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Kan inte komma åt problemet för modifikation" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Elementet '%s' kan inte modifieras" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler " - "detaljer." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Kan inte komma åt problemet för läsning" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' är inte ett giltigt elementnamn" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Det går inte att få storleken på '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Inget utrymme kvar" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -429,12 +440,12 @@ msgstr "" - "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet " - "inte kör.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Avsluta efter ANT sekunders inaktivitet" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Detta program måste köra som root." - -@@ -460,18 +471,22 @@ msgstr "Bli inte demon" - msgid "Log to syslog even with -d" - msgstr "Logga till syslog även med -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event HÄNDELSEKAT…" -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Kör HÄNDELSE på KAT" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Kommunicera direkt med användaren" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -509,88 +524,89 @@ msgstr "Antal samtidiga arbetare. Standard är " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximal cachestorlek i MiB. Standard är " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Slår av autenticering" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support-användarnamn" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support-lösenord, om det inte ges kommer en fråga efter det att " - "ställas" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL-certifikatsökvägar eller certifikattyp" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Du behöver även ange --username för --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Du kan använda antingen --username eller --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Du kan använda antingen --username eller --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Du kan använda antingen --anonymous eller --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Fel antal argument" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Okänt parametervärde: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Lösenord:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Kan inte fortsätta utan lösenord\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP-autenticerad automatrapportering" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL-klientautenticerad automatrapportering" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonym automatrapportering" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -609,68 +625,68 @@ msgstr "" - " SKICKA_KAT - Katalog där skickade arkiv lagras\n" - " FILNAMN - Skickat arkivs filnamn\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Inte en katalog: ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Hoppar över: ”{0}” (börjar med ett snedstreck)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Hoppar över: ”{0}” (börjar med en punkt)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Hoppar över: ”{0}” (innehåller ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Hoppar över: ”{0}” (innehåller blanktecken)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Hoppar över: ”{0}” (innehåller tabulator)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Kan inte byta katalog till ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Okänd filtyp: ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Kan inte skapa en arbetskatalog i ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Kan inte flytta ”{0}” till ”{1}”" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Kan inte kopiera ”{0}” till ”{1}”" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Verifieringsfel på ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Packar upp ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Kan inte skapa katalogen ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Kan inte packa upp ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "”{0}” behandlad" - -@@ -694,21 +710,29 @@ msgstr "Kan inte ändra ägare av ”%s”: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Misslyckades att radera en problemkatalog: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Kan inte hämta problemdata från abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Kan inte hämta problemlistan från abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Kan inte hämta problemdata från abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Kan inte testa huruvida elementet finns via abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -755,7 +779,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Stackspårstolkning misslyckades för %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Kraschtråden kan inte finnas" - -@@ -862,7 +886,7 @@ msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" - msgid "Oops text extracted successfully" - msgstr "Oops-texten extraherad" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -870,6 +894,38 @@ msgstr "" - "Kärnloggen indikerar att hårdvarufel inträffat.\n" - "Detta är troligen inte ett mjukvaruproblem.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -1011,7 +1067,36 @@ msgstr "Saknad felsökningsfil: {0}" - msgid "All debuginfo files are available" - msgstr "Alla felsökningsinformationsfiler är tillgängliga" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1021,7 +1106,7 @@ msgstr "" - "svarar 'Nej' kommer en stackspårning att skapas lokalt. (Det kan komma att " - "ladda ner en stor mängd data)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1249,7 +1334,8 @@ msgstr "Skapa ny problemkatalog i KAT för varje oops som hittas" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Samma som -d DumpPlats, DumpPlats anges i abrt.conf" - -@@ -1259,16 +1345,18 @@ msgstr "Spara den extraherade information i PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Gör problemkatalogen läsbar för alla" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Skriv söksträngar till standard ut och avsluta" - -@@ -1277,9 +1365,13 @@ msgstr "Skriv söksträngar till standard ut och avsluta" - msgid "Failed to compile regex" - msgstr "Misslyckades att kompilera reguljäruttryck" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Kan inte uppdatera problemet: hittade mer än en oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1298,6 +1390,7 @@ msgstr "Misslyckades att spara data för felupptäckt i abrt-databasen" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Misslyckades att initiera läsning av systemd-journal" - -@@ -1333,11 +1426,13 @@ msgstr "Skapa en ny problemkatalog i KAT för varje minnesdump" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Börja att läsa systemd-journal från MARKÖR-positionen" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Börja att läsa systemd-journal från slutet" - -@@ -1351,17 +1446,20 @@ msgstr "Samma som -t INT, INT anges i plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Följ systemd-journal från den senast observerade positionen (om tillgänglig)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "De behöver ange antingen -c MARKÖR eller -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Kan inte öppna systemd-journal" - -@@ -1369,18 +1467,21 @@ msgstr "Kan inte öppna systemd-journal" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Kan inte filtrera systemd-journal till endast systemd-coredump-data" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Kan inte söka till slutet på journalen" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Misslyckades att sätta markören för systemd-journal ”%s”" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Kan inte läsa journaldata." - -@@ -1413,28 +1514,77 @@ msgstr "" - "Den senast observerade positionen sparas i " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Läs journalfiler från alla maskiner" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Läs alla journalfiler från katalogen vid SÖKVÄG" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Kan inte initiera systemd-journal i katalogen ”%s”" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Kan inte filtrera ut endast kärndata från systemd-journal" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Misslyckades att starta läsning från markören ”%s”" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1444,43 +1594,47 @@ msgstr "" - "\n" - "Extrahera en Xorg-krasch från FIL (eller standard in)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Skriv funna kraschdata på standard ut" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Kan inte spara journalläsningens position" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Kan inte spara journalläsningens position: open(”%s”)" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "Återställer inte journalläsningens position: filen ”%s” finns inte" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Kan inte återställa journalläsningens position från filen ”%s”" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Kan inte återställa journalläsningens position: sökvägen ”%s” är inte en " - "normal fil" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1488,12 +1642,12 @@ msgstr "" - "Kan inte återställa journalläsningens position: filen ”%s” överskrider " - "storleksgränsen %d B" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Kan inte återställa journalläsningens position: open(”%s”)" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1501,7 +1655,7 @@ msgstr "" - "”%s”" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Misslyckades att flytta journalen till en markör från filen ”%s”" -@@ -2035,7 +2189,7 @@ msgstr "Misslyckades att stänga ner NSS." - msgid "Sleeping for %d seconds" - msgstr "Sover i %d sekunder" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2043,7 +2197,7 @@ msgstr "" - "Ett kärnproblem inträffade på grund av trasigt BIOS. Tyvärr går sådana " - "problem inte att rätta utav kärnutvecklare." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2051,7 +2205,7 @@ msgstr "" - "Ett kärnproblem har inträffat, men din hårdvara stödjs inte, därför kan inte " - "kärnutvecklare fixa detta problem." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2060,24 +2214,24 @@ msgstr "" - "Ett problem i kärnan inträffade, men din kärna har fläckats (flaggor:%s). " - "De som underhåller kärnan kan inte diagnostisera fläckade rapporter." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Fläckande moduler: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista över fel-id:n" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Ange en bodhi-server-url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Ange en utgåva" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2087,21 +2241,21 @@ msgstr "" - "\n" - "Sök efter uppdateringar på bodhi-servern" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Söker efter uppdateringar" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Inga uppdateringar av detta paket hittades" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "Den lokala versionen av paketet är nyare än de tillgängliga uppdateringarna" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2129,65 +2283,66 @@ msgstr "Visa hittade oopsmeddelanden" - msgid "Delete files with found oopses" - msgstr "Radera filer med hittade oopsmeddelanden" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "”%s” identifierar mer än en problemkatalog" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Lista problem [i KAT]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Ta bort problemkatalogen KAT" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analysera och rapportera problemdata i KAT" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Skriv ut information om KAT" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Visa antalet nyliga krascher" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Bearbeta flera problem" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [flaggor]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Lista endast orapporterade problem" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Visa detaljerad rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Visa bara problem nyare än angiven tidsstämpel" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Visa bara problem äldre än angiven tidsstämpel" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2199,51 +2354,60 @@ msgstr "" - "att köra ”abrt-auto-reporting enabled” som en användare med root-" - "rättigheter\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [flaggor] KAT…" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Text längre än detta kommer visas förkortad" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Problemkatalogen finns inte ”%s”" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Visa bara antalet problem utan några meddelanden" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Visa bara problem nyare än angiven tidsstämpel" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n" --"\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& rapport [flaggor] KAT…" -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Tar bort ”%s”" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& rapport [flaggor] KAT…" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Åtgärder: remove(rm), info(i), skip(s):" -@@ -2252,24 +2416,179 @@ msgstr "Åtgärder: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Åtgärder: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Rapporterar ”%s”" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "För nästa problem tryck RETUR:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Utan argumentet --since, itererar över alla upptäckta problem." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Väljer endast problem upptäckta efter tidsstämpeln" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ta.po b/po/ta.po -index a74a517..cef4f2a 100644 ---- a/po/ta.po -+++ b/po/ta.po -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -25,7 +25,7 @@ msgstr "" - "language/ta/)\n" - "Language: ta\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -35,102 +35,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "அறிவிப்பை மூட முடியவில்லை: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "அறிக்கையிடு" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "அறிவிப்பைக் காண்பிக்க முடியவில்லை: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio சேனலில் இருந்து வாசிக்க முடியவில்லை: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio சேனலில் குறியீடாக்கத்தை அமைக்க முடியவில்லை: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio சேனலுக்கு தடுக்காத பயன்முறையை இயக்க முடியவில்லை: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -140,6 +140,17 @@ msgstr "" - "\n" - "ABRT புதிய சிக்கல்களைக் கண்டறியும் போது அதைப் பற்றி அறிவிக்கும் பயன்பாடு\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "கோப்பகத்தை எடுத்துக்கொள்ளும் முன்பு கேட்கவும்" -@@ -161,13 +172,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய " --"coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT " --"ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற " --"வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் " --"பதிவேற்றும்." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -216,10 +224,6 @@ msgstr "" - "செயல்படும்." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "கோர்டம்ப்பைப் பதிவேற்றும் முன் கேட்கவும்" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -228,15 +232,15 @@ msgstr "" - "கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு " - "டிக்கட்டை உருவாக்கும்." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "முக்கியமான தகவலுக்கு தனிப்பட்ட டிக்கட்டைக் கோரவும்" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "நிறைவடையாத சிக்கல்கள் குறித்து அறிவி" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -247,6 +251,22 @@ msgstr "" - "வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை " - "அனுமதிக்காது." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "மூடு (_C)" -@@ -272,14 +292,14 @@ msgstr "அறிமுகம்" - msgid "Quit" - msgstr "வெளியேறு" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -291,11 +311,11 @@ msgstr "" - msgid "Problem directory" - msgstr "சிக்கல் கோப்பகம்" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "அமைவாக்கக் கோப்பு" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -309,24 +329,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM ஐ கிளையன்ட் uid ஆகப் பயன்படுத்தவும்" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog க்கு பதியவும்" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "நிரல் பெயர்களை பதிவில் சேர்க்கவும்" - -@@ -334,62 +355,52 @@ msgstr "நிரல் பெயர்களை பதிவில் சேர - msgid "Unknown error" - msgstr "தெரியாத பிழை" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "அங்கீகாரம் இல்லை" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "மாற்றம் செய்ய சிக்கலை அணுக முடியவில்லை" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி " - "பதிவுகளைப் பார்க்கவும்." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' இன் அளவைப் பெற முடியவில்லை" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "சிக்கல் இடம் மீதம் இல்லை" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "சிக்கல் கோப்பகம் '%s' இலிருந்து கூறு '%s' ஐ நீக்க முடியவில்லை" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -399,12 +410,12 @@ msgstr "" - "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் " - "இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM விநாடிகளுக்கு செயலில்லாமல் இருந்த பிறகு வெளியேறவும்" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "இந்த நிரலை மூலப் பயனராகவே இயக்க வேண்டும்." - -@@ -431,18 +442,22 @@ msgstr "டெமனைஸ் செய்ய வேண்டாம்" - msgid "Log to syslog even with -d" - msgstr "-d உடனும் syslog இல் பதிவு செய்யவும்" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR இல் EVENT ஐ இயக்கு" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "நேரடியாக பயனரிடம் தொடர்புகொள்ளவும்" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -482,89 +497,90 @@ msgstr "ஒத்த சமய ஒர்க்கர்களின் எண் - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB இல் அதிகபட்ச தேக்கக அளவு. முன்னிருப்பு:" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "அங்கீகரிப்பை முடக்கும்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat ஆதரவு பயனர் பெயர்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat ஆதரவு கடவுச்சொல், கொடுக்கப்படாவிட்டால், அதைக் கேட்கும் இடைமுகம் " - "காட்டப்படும்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL சான்றிதழ் பாதைகள் அல்லது சான்றிதழ் வகை" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password க்கு --username ஐயும் வழங்க வேண்டும்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "--username அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "--username அல்லது --anonymous இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "--anonymous அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "செல்லுபடியாகாத மதிப்புருக்களின் எண்ணிக்கை" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "கடவுச்சொல்:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP அங்கீகரித்த தானியக்க அறிக்கையிடல்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL கிளையன் அங்கீகரித்த தானியக்க அறிக்கையிடல்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "பெயரிலா தானியக்க அறிக்கையிடல்" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -585,83 +601,83 @@ msgstr "" - " FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ஒரு கோப்பகமல்ல: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (சாய்வுக் கோட்டில் தொடங்குகிறது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (புள்ளியில் தொடங்குகிறது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (.. ஐக் கொண்டுள்ளது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (இடைவெளியைக் கொண்டுள்ளது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (தத்தலைக் கொண்டுள்ளது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "கோப்பகத்தை '{0}' க்கு மாற்றியமைக்க முடியாது" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "தெரியாத கோப்பு வகை: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' இல் பணிக் கோப்பகத்தை உருவாக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ஐ '{1}' க்கு நகர்த்த முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ஐ '{1}' இல் நகலெடுக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' இல் சரிபார்ப்புப் பிழை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' ஐப் பிரித்தெடுக்கிறது" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' கோப்பகத்தை உருவாக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ஐப் பிரித்தெடுக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' வெற்றிகரமாக செயலாக்கப்பட்டது" - -@@ -685,18 +701,26 @@ msgstr "'%s' ஐ chown செய்ய முடியவில்லை: %s" - msgid "Deleting problem directory failed: %s" - msgstr "சிக்கல் கோப்பகத்தை நீக்குவது தோல்வியடைந்தது: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus இலிருந்து சிக்கல் பட்டியலைப் பெற முடியவில்லை: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -746,7 +770,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s க்கு பின் தடமறிதல் பாகுபடுத்துதல் தோல்வியடைந்தது" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "செயலிழப்பு இழை காணப்படவில்லை" - -@@ -854,7 +878,7 @@ msgstr "oops செய்தியை பிரித்தெடுக்க - msgid "Oops text extracted successfully" - msgstr "Oops உரை வெற்றிகரமாக பிரித்தெடுக்கப்பட்டது" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -862,6 +886,38 @@ msgstr "" - "கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\n" - "அநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -980,7 +1036,36 @@ msgstr "விடுப்பட்ட வழுநீக்கல் தகவ - msgid "All debuginfo files are available" - msgstr "வழுநீக்கல் தகவல் கோப்புகள் அனைத்தும் உள்ளன" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -990,7 +1075,7 @@ msgstr "" - "'இல்லை' என்பது உங்கள் பதிலாக இருந்தால், கணினியில் ஒரு ஸ்டேக் டிரேஸ் " - "உருவாக்கப்படும். (அது மிகப் பெரிய அளவிலான தரவைப் பதிவிறக்கலாம்)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1236,7 +1321,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation போன்றது DumpLocation ஆனது abrt.conf இல் " -@@ -1248,16 +1334,18 @@ msgstr "பிரித்தெடுத்த தகவலை PROBLEM இல - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "சிக்கல் கோப்பகத்தை அனைவரும் வாசிக்கும்படி அமை" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "ஒரு வினாடிக்கு த்ராட்டில் சிக்கல் கோப்பக உருவாக்கம் 1" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "தேடல் சரங்களை stdout இல் அச்சிட்டு வெளியேறு" - -@@ -1267,11 +1355,13 @@ msgstr "தேடல் சரங்களை stdout இல் அச்சி - msgid "Failed to compile regex" - msgstr "சுருங்குறித் தொடரை கம்பைல் செய்வதில் தோல்வியடைந்தது" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops " --"கண்டறியப்பட்டுள்ளது" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1290,6 +1380,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1313,11 +1404,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1331,16 +1424,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1348,18 +1444,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1378,14 +1477,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1394,12 +1496,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1409,60 +1557,64 @@ msgstr "" - "\n" - "FILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "கண்டறிந்த செயலிழப்பு தரவை தரநிலையான வெளியீட்டில் அச்சிடு" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "கண்டறியப்படும் ஒவ்வொரு செயலிழப்புக்கும் DIR இல் ஒரு சிக்கல் கோப்பகத்தை " - "உருவாக்கு" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2003,7 +2155,7 @@ msgstr "NSS ஐ பணிநிறுத்த முடியவில்லை - msgid "Sleeping for %d seconds" - msgstr "%d வினாடிகளுக்கு தூங்குகிறது" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2011,7 +2163,7 @@ msgstr "" - "பழுதடைந்த BIOS ஆல் ஒரு கெர்னல் சிக்கல் ஏற்பட்டது. துரதிருஷ்டவசமாக இத்தகைய " - "சிக்கல்கள் கெர்னல் பராமரிப்பாளர்களால் தீர்க்கப்படுவதில்லை." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2019,7 +2171,7 @@ msgstr "" - "ஒரு கெர்னல் சிக்கல் ஏற்பட்டது, ஆனால் உங்கள் வன்பொருளுக்கு ஆதரவில்லை, " - "ஆகவேகெர்னல் பரிமாரிப்பாளர்களால் இந்த சிக்கலைத் தீர்க்க முடியாது." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2029,24 +2181,24 @@ msgstr "" - "(கொடிகள்:%s). கெர்னல் பராமரிப்பு தொகுதிகளால் சிதைவடைந்தவை பற்றிய அறிக்கைகளை " - "உருவாக்க முடியவில்லை." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " பாதிக்கப்பட்ட தொகுதிக்கூறுகள்: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "வழு ஐடிகளின் பட்டியல்" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ஒரு போதி சேவையக url ஐக் குறிப்பிடவும்" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ஒரு வெளியீட்டைக் குறிப்பிடவும்" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2056,21 +2208,21 @@ msgstr "" - "\n" - "போதி சேவையகத்தில் புதுப்பிப்புகள் உள்ளதா எனத் தேடு" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "புதுப்பிப்புகள் உள்ளதா எனத் தேடுகிறது" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "இந்தத் தொகுப்புக்கு புதுப்பிப்பு எதுவும் இல்லை" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "கிடைக்கக்கூடிய புதுப்பிப்புகளைக் காட்டிலும், தற்போதுள்ள பதிப்பு புதியது" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2098,66 +2250,67 @@ msgstr "கண்டறியப்பட்ட oopses ஐ அச்சிடு - msgid "Delete files with found oopses" - msgstr "கண்டறியப்பட்ட oopses கொண்டுள்ள கோப்புகளை அழி" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ஒன்றுக்கு மேற்பட்ட சிக்கல் கோப்பகங்களைக் கண்டறிகிறது" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "[in DIRs] சிக்கல்களையும் பட்டியலிடு" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "DIR என்ற சிக்கல் கோப்பகத்தை நீக்கவும்" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR இல் உள்ள சிக்கல் தரவை ஆராய்ந்து அறிவிக்கவும்" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR பற்றி தகவலை அச்சிடவும்" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "சமீபத்திய செயலிழப்புகளின் எண்ணிக்கையை அச்சிடு" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "பல சிக்கல்களைச் செயலாக்கவும்" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "அறிக்கையிடாத சிக்கல்களை மட்டும் பட்டியலிடு" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "விவரமான அறிக்கையை காட்டவும்" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் பிறகான சிக்கல்களை மட்டும் பட்டியலிடு" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் முந்தைய சிக்கல்களை மட்டும் பட்டியலிடு" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2167,55 +2320,65 @@ msgstr "" - "Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n" - "'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "இதை விட பெரிய உரை அப்ரிட்ஜ் செய்யப்பட்டு காண்பிக்கப்படும்" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "இப்படி ஒரு சிக்கல் கோப்பகம் இல்லை '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "எந்த செய்தியும் இன்றி சிக்கல் எண்ணிக்கையை மட்டும் அச்சிடு" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "குறிப்பிடப்பட்ட நேர முத்திரைக்கு சமீபமான சிக்கல்களை மட்டும் அச்சிடு" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u சிக்கல்களைக் கண்டறிந்துள்ளது. மேலும் தகவலுக்கு இந்தக் கட்டளையை " - "இயக்கவும்: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' ஐ அழிக்கிறது" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& அறிக்கையிடவும் [விருப்பங்கள்] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "அறிக்கையிட்ட பிறகு PROBLEM_DIR ஐ அகற்றவும்" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' ஐ அழிக்கிறது" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "செயல்கள்: நீக்குதல்(rm), தகவல்(i), தவிர்த்தல்(s):" -@@ -2226,30 +2389,185 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "செயல்கள்: நீக்குதல்(rm), அறிக்கையிடுதல்(e), தகவல்(i), தவிர்த்தல்(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' ஐ அறிக்கையிடுகிறது" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழுத்தவும்:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் " - "மீண்டும் மீண்டும் செயல்படுத்தப்படும்." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/te.po b/po/te.po -index 9b1eef8..a68f9bb 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/te/)\n" - "Language: te\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -36,102 +36,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ప్రకటనను మూయలేదు: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "నివేదించు" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ప్రకటనను చూపలేదు: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio చానల్‌నుండి చదువలేదు: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio చానల్ నందు యెన్కోడింగ్ అమర్చలేదు: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio చానల్ కొరకు నాన్‌బ్లాకింగ్ రీతిని ఆన్ చేయలేదు: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -141,6 +141,17 @@ msgstr "" - "\n" - "ABRT చేత కొత్త సమస్యలు గుర్తించబడినప్పుడు వినియోగదారికి తెలుపు ఆప్లెట్\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "సంచయాన్ని దొంగిలించుటకు ముందుగా అడుగుము" -@@ -162,12 +173,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా " --"ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT " --"అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం " --"ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -213,10 +222,6 @@ msgstr "" - "చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "కోర్‌డంప్‌ను అప్‌లోడ్ చేయుటకు ముందుగా అడుగుము" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -224,15 +229,15 @@ msgstr "" - "ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే " - "ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "సున్నితమైన సమాచారం కొరకు వ్యక్తిగత టికెట్‌ను అభ్యర్ధించును" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "అసంపూర్ణ సమస్యలను ప్రకటించుము" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -242,6 +247,22 @@ msgstr "" - "అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, " - "ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "మూసివేయి (_C)" -@@ -267,14 +288,14 @@ msgstr "గురించి" - msgid "Quit" - msgstr "నిష్క్రమించు" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -286,11 +307,11 @@ msgstr "" - msgid "Problem directory" - msgstr "సమస్య డైరెక్టరీ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ఆకృతీకరణ ఫైలు" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -304,24 +325,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ఐచ్చికాలు]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM క్లైంట్ uid వలె వుపయోగించు" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "సిస్‌లాగ్‌కు లాగ్" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరులను జతచేయి" - -@@ -329,62 +351,52 @@ msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరుల - msgid "Unknown error" - msgstr "తెలియని దోషం" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' మూలకం సవరించలేదు" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ధృవీకరించబడలేదు" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "సవరణ కొరకు సమస్యను యాక్సెస్ చేయలేము" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' మూలకం సవరించలేదు" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను " - "పరిశీలించండి." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' యొక్క పరిమాణం పొందలేదు" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ఏ సమస్య ఖాళీ విడువలేదు" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "మూలకం '%s'ను సమస్య డైరెక్టరీ '%s' నుండి తొలగించలేదు" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -392,12 +404,12 @@ msgid "" - "is not running.\n" - msgstr "పేరు '%s' పోయంది, వేరే సేవ యీ పేరు పొంది నడువకుండా చూడండి.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM క్షణాల క్రియాహీనత తరువాత నిష్క్రమించు" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెను." - -@@ -423,18 +435,22 @@ msgstr "డెమొనైజ్ చేయవద్దు" - msgid "Log to syslog even with -d" - msgstr "సిస్‌లాగ్‌కు -d తో లాగ్ అవ్వుము" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT ను DIR పై నడుపుము" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "వాడుకరిని నేరుగా సంప్రదించు" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -473,87 +489,88 @@ msgstr "ఏకకాలంలో పనిచేయు వారి సంఖ్ - msgid "Maximal cache size in MiB. Default is " - msgstr "గరిష్ట క్యాచీ పరిమాణం MiB నందు. అప్రమేయం" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ధృవీకరణను ఆఫ్ చేయును" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat తోడ్పాటు వాడుకరి పేరు" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat తోడ్పాటు సంకేతపదం, ఇవ్వకపోతే, దానికొరకు ప్రామ్ట్ జారీ అగును" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL ధృవీకరణపత్రం పాత్స్ లేదా ధృవీకరణపత్రం రకం" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "మీరు --username మరియు --password తెలపాలి" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "మీరు --username లేదా --certificate ఉపయోగించవచ్చు" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "మీరు --username లేదా --anonymous ఉపయోగించవచ్చు" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "మీరు --anonymous లేదా --certificate ఉపయోగించవచ్చు" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "సంకేతపదం:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "సంకేతపదం లేకుండా కొనసాగించలేము\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ధృవీకృత స్వయంచాలన నివేదీకరణ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL క్లైంట్ ధృవీకృత స్వయంచాలన నివేదీకరణ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "పేరులేకుండా స్వయంచాలన నివేదీకరణ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -573,83 +590,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "సంచయం కాదు: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "దాటవేస్తోంది: '{0}' (స్లాష్‌తో ప్రారంభమగును)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "దాటవేస్తోంది: '{0}' (డాట్‌తో ప్రారంభమగును)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "దాటవేస్తోంది: '{0}' (.. కలిగివుంది)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "దాటవేస్తోంది: '{0}' (ఖాళీ కలిగివుంది)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "దాటవేస్తోంది: '{0}' (టాబ్ కలిగివుంది)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "సంచయంను '{0}' కు మార్చలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "తెలియని ఫైల్ రకం: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' నందు పనిచేయుచున్న సంచయం సృష్టించలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ను '{1}' కు కదల్చలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ను '{1}' కు నకలుతీయలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' పై నిర్ధారణ దోషం" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' విడమర్చుతోంది" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' సంచయం సృష్టించలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' విడమర్చలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' విజయవంతంగా ప్రోసెసైంది" - -@@ -673,18 +690,26 @@ msgstr "chown '%s' కాలేదు: %s" - msgid "Deleting problem directory failed: %s" - msgstr "సమస్యా డైరెక్టరీను తొలగించుట విఫలమైంది: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus నుండి సమస్య జాబితాను పొందలేదు: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -732,7 +757,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s కొరకు బాక్‌ట్రేస్ పార్శింగ్ విఫలమైంది" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "క్రాష్ త్రెడ్ కనబడలేదు" - -@@ -838,7 +863,7 @@ msgstr "oops సందేశం బహిర్గతపరచలేదు: '{0} - msgid "Oops text extracted successfully" - msgstr "Oops పాఠం విజయవంతంగా బహిర్గతపరచెను" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -846,6 +871,38 @@ msgstr "" - "హార్డువేర్ దోషాలు గుర్తించబడెనని కెర్నల్ లాగ్ సూచిస్తోంది.\n" - "ఇది సాఫ్టువేర్ సమస్యకాదు.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -963,7 +1020,36 @@ msgstr "డీబగ్‌యిన్ఫో ఫైల్ తప్పిపో - msgid "All debuginfo files are available" - msgstr "అన్ని డీబగ్‌యిన్ఫో ఫైళ్ళు అందుబాటులో వున్నాయి" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -973,7 +1059,7 @@ msgstr "" - "సమాధానం 'వద్దు' అయితే గనుక, స్టాక్ ట్రేస్ స్థానికంగా జనియింపబడును. (అది " - "పెద్ద మొత్తంలో దత్తాంశమును డౌనులోడు చేయవచ్చు)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1211,7 +1297,8 @@ msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation వలె, DumpLocation అనునది abrt.conf నందు తెలుపబడెను" - -@@ -1221,16 +1308,18 @@ msgstr "వెలికితీసిన సమాచారం PROBLEM నం - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "సమస్యాత్మక డైరెక్టరీను అందరూ చదువదగినదిగా చేయి" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "డైరెక్టరీ సృష్టించుటలో సమస్యను ఒక్కో క్షణానికి 1 కి బిగించు." - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద్రించి నిష్క్రమించు" - -@@ -1240,9 +1329,13 @@ msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద - msgid "Failed to compile regex" - msgstr "regex కంపైల్ చేయుటకు విఫలమైంది" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "సమస్యను నవీకరించలేము: ఒకటి కన్నా ఎక్కువ oops కనబడెను" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1261,6 +1354,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1284,11 +1378,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1302,16 +1398,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1319,18 +1418,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1349,14 +1451,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1365,12 +1470,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1380,58 +1531,62 @@ msgstr "" - "\n" - "Xorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "కనుగొనిన క్రాష్ దత్తాంశం ప్రామాణిక అవుట్పుట్‌పై ముద్రించు" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "కనుగొనిన ప్రతి క్రాష్‌నకు DIR నందు సమస్య డైరెక్టరీ సృష్టించుము" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1966,7 +2121,7 @@ msgstr "NSS మూసివేతకు విఫలమైంది." - msgid "Sleeping for %d seconds" - msgstr "%d క్షణాలు స్లీపింగ్" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1974,7 +2129,7 @@ msgstr "" - "పాడైన BIOS కారణంగా కెర్నల్ సమస్య తలెత్తెను. దురదృష్టవశాత్తు, అటువంటి సమస్యలు " - "కెర్నల్ నిర్వాహకుల చే పరిష్కరించబడవు." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1982,7 +2137,7 @@ msgstr "" - "కెర్నల్ సమస్య తలెత్తెను, అయితే మీ హార్డువేర్ తోడ్పాటులేదు, కనుక కెర్నల్ " - "నిర్వాహకులు ఈ సమస్యను పరిష్కరించలేరు." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1991,24 +2146,24 @@ msgstr "" - "కెర్నల్ సమస్య యెదురైంది, అయితే మీ కెర్నల్ కల్మషమైంది (flags:%s). కల్మషమైన " - "నివేదికలను కెర్నల్ నిర్వాహకులు విశ్లేషించలేక పోయినారు." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "టైన్టెట్ మాడ్యూళ్ళు: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "బగ్ ఐడిల జాబితా" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "బోదీ సేవిక url తెలుపుము" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "విడుదల తెలుపుము" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2018,20 +2173,20 @@ msgstr "" - "\n" - "బోదీ సేవికపై నవీకరణల కొరకు వెతుకుము" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "నవీకరణల కొరకు వెతుకుచున్నది" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ఈ ప్యాకేజీ కొరకు యే నవీకరణలు కనుగొనబడలేదు" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "అందుబాటులోని నవీకరణల కన్నా స్థానికంగా వున్న ప్యాకేజీ వర్షన్ కొత్తది" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2059,66 +2214,67 @@ msgstr "కనుగొన్న oopses ముద్రించు" - msgid "Delete files with found oopses" - msgstr "కనుగొన్న oopses తో ఫైళ్ళు తొలగించు" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ఒకటి కన్నా ఎక్కువ సమస్య డైరెక్టరీలు గుర్తించెను" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "సమస్యల జాబితా [DIRల నందు]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "సమస్య డైరెక్టరీ DIR తీసివేయి" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "సమస్య డాటాను DIR నందు విశ్లేషించు మరియు నివేదించు" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR గురించి సమాచారం ముద్రించు" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ముద్రించు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "పలు సమస్యలను ప్రోసెస్‌చేయి" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "నివేదించని సమస్యలు మాత్రమే జాబితాచేయి" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "విశదీకృత నివేదిక చూపుము" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా యిటీవలి సమస్యలు మాత్రమే జాబితాచేయి" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా పాత సమస్యలు మాత్రమే జాబితాచేయి" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2128,55 +2284,65 @@ msgstr "" - "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n" - "'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "దీనికన్నా పెద్దదైన పాఠం సంక్షిప్తంగా చూపబడును" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "అటువంటి సమస్యా డైరెక్టరీ '%s' లేదు" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "ఏ సందేశం లేకుండా సమస్య లెక్కను మాత్రమే ముద్రించు" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా కొత్తవైన సమస్యలను మాత్రమే ముద్రించు" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u సమస్య(లు) గుర్తించెను. మరింత సమాచారం కోసం యిది నడుపండి: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' తొలగిస్తోంది" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "నివేదించిన తరువాత PROBLEM_DIR తీసివేయి" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' తొలగిస్తోంది" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "చర్యలు: remove(rm), info(i), skip(s):" -@@ -2187,28 +2353,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "చర్యలు: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' నివేదిస్తోంది" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "తరువాతి సమస్య కొరకు ENTER వత్తండి:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "టైమ్‌స్టాంప్ తరువాత గుర్తించిన సమస్యలను మాత్రమే ఎంపికచేయును" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/tg.po b/po/tg.po -index aa4cbf0..28494e3 100644 ---- a/po/tg.po -+++ b/po/tg.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/tg/)\n" - "Language: tg\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -27,108 +27,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Гузориш" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -150,7 +161,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -183,30 +196,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -232,14 +257,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -251,11 +276,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Файли танзимотӣ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -269,24 +294,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [имконот]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Номҳои барномаҳоро ба журнал илова кунед" - -@@ -294,60 +320,50 @@ msgstr "Номҳои барномаҳоро ба журнал илова кун - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -355,12 +371,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -381,18 +397,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -422,73 +442,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -500,68 +521,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -585,18 +606,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -637,7 +666,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -726,12 +755,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -840,14 +901,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1062,7 +1152,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1072,16 +1163,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1090,8 +1183,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1111,6 +1208,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1134,11 +1232,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1152,16 +1252,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1169,18 +1272,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1199,14 +1305,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1215,70 +1324,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1775,63 +1934,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1853,65 +2012,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1919,49 +2079,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1970,24 +2140,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/th.po b/po/th.po -index 1eac660..077c9ba 100644 ---- a/po/th.po -+++ b/po/th.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/th/)\n" - "Language: th\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,102 +28,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "ไม่สามารถเป็นเจ้าของ '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "ไม่สามารถเปิดไดเรกทอรีสำหรับการเขียน '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ไม่สามารถปิดการแจ้งเตือน: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "รายงาน" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ไม่สามารถแสดงการแจ้งเตือน: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "ไม่สามารถอ่านจาก gio channel: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "ไม่สามารถตั้งการเข้ารหัสบน gio channel: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "ไม่สามารถเปิด nonblocking mode ให้ gio channel: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -133,6 +133,17 @@ msgstr "" - "\n" - "Applet ซึ่งเตือนผู้ใช้เมื่อพบปัญหาใหม่ถูกตรวจพบโดย ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ถามก่อนขโมยข้อมูลในไดเรกทอรี" -@@ -154,12 +165,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"แฟ้ม coredump เป็นสิ่งที่จำเป็นสำหรับการสร้าง stack trace " --"ซึ่งเป็นเวลาและการดำเนินการการใช้พื้นที่ ABRT จะใหบริการโดยการสร้าง stack " --"trace จาก coredump แต่คุณต้องอัปโหลด coredump บนบริการนี้ก่อน " --"ด้วยทางเลือกนี้ การปิดใช้งาน ABRT จะอัปโหลด coredump โดยไม่ถามก่อน" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -204,10 +213,6 @@ msgstr "" - "มีผลก็ต่อเมื่อการรายงานสั้นถูกเปิดใช้งาน" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "ถามก่อนอัปโหลด coredump" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -216,15 +221,15 @@ msgstr "" - "ที่เปิดใช้งานแล้วจะสร้างตั๋วปัญหาด้วยการเข้าถึงที่จำกัดเสมด " - "หากพบข้อมูลสำคัญที่เป็นไปได้" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ขอตั๋วส่วนตัวสำหรับข้อมูลสำคัญ" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "เตือนปัญหาที่ยังไม่สมบูรณ์" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -233,6 +238,22 @@ msgstr "" - "ปัญหาที่ไม่สมบูรณ์จะถูกพบขณะปิดเครื่องหรือออกจากระบบ " - "ในการจัดทำรายงานปัญหาที่มีค่า ABRT จะไม่อนุญาตให้คุณส่งรายงานปัญหาเหล่านี้" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_ปิด" -@@ -258,14 +279,14 @@ msgstr "เกี่ยวกับ" - msgid "Quit" - msgstr "ออก" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -277,11 +298,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ไดเรกทอรีปัญหา" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "แฟ้มค่ากำหนด" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -295,24 +316,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ใช้ NUM เป็น client uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "บันทึกไปที่ปูมระบบ" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" - -@@ -320,61 +342,51 @@ msgstr "เพิ่มชื่อโปรแกรมที่ต้องก - msgid "Unknown error" - msgstr "ข้อผิดพลาดที่ไม่รู้จัก" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "element '%s' แก้ไม่ได้" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ไม่มีตัวตน" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ไม่สามารถเข้าถึงปัญหาเพื่อแก้ไข" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "element '%s' แก้ไม่ได้" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "การ Chowning directory ล้มเหลว กรุณาตรวจสอบปูมระบบสำหรับข้อมูลเพิ่มเติม" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "ไม่สามารถรับขนาด '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ไม่มีพื้นที่ว่างเหลือสำหรับปัญหา" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "ไม่สามารถลบ element '%s' จากไดเรกทอรีปัญหา '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -383,12 +395,12 @@ msgid "" - msgstr "" - "ชื่อ '%s' หายไปแล้ว กรุณาตรวจสอบ หากบริการอื่นที่เป็นเจ้าของชื่อไม่ทำงาน\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "ออกหลังจากไม่ใช้งาน NUM วินาที" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "โปรแกรมนี้ต้องเรียกใช้ในฐานะผู้ดูแลระบบ" - -@@ -414,18 +426,22 @@ msgstr "อย่าทำงานแบบภูติ" - msgid "Log to syslog even with -d" - msgstr "บันทึกไปที่ปูมระบบแม้แต่ -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "เรียกใช้ EVENT บน DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "สื่อสารกับผู้ใช้โดยตรง" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -463,73 +479,74 @@ msgstr "จำนวนคนงานที่ทำงานพร้อมก - msgid "Maximal cache size in MiB. Default is " - msgstr "จำนวนสูงสุดของจำนวนเมกะไบต์ของแคช ค่าเริ่มต้นคือ" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "จำนวนอาร์กิวเมนต์ไม่ถูกต้อง" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ไม่รู้ค่าของตัวเลือก: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -541,68 +558,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -626,18 +643,26 @@ msgstr "ไม่สามารถทำการ chown '%s': '%s'" - msgid "Deleting problem directory failed: %s" - msgstr "การลบไดเรกทอรีปัญหาล้มเหลว: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "ไม่สามารถรับรายการปัญหาจาก abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -684,7 +709,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "การวิเคราะห์ Backtrace ล้มเหลวสำหรับ %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ไม่พบ Crash thread" - -@@ -786,13 +811,45 @@ msgstr "ไม่สามารถแยกข้อความ oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "แยกข้อความ Oops สำเร็จ" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "ปูมของเคอร์เนลบ่งชี้ว่าพบปัญหาฮาร์ดแวร์\n" - "นี่อาจจะไม่ใช่ปัญหาซอฟต์แวร์\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -908,7 +965,36 @@ msgstr "แฟ้ม debuginfo หายไป: {0}" - msgid "All debuginfo files are available" - msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -917,7 +1003,7 @@ msgstr "" - "ตกลงจะอัปโหลด core dump หรือไม่? (อาจมีข้อมูลสำคัญ) หากคุณตอบ 'ไม่' stack " - "trace จะถูกสร้างอยู่ในเครื่อง (อาจจะต้องดาวน์โหลดข้อมูลขนาดใหญ่หลวง)" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1144,7 +1230,8 @@ msgstr "สร้างไดเรกทอรีปัญหาใหม่ใ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "เหมือนกับ -d DumpLocation DumpLocation ถูกระบุใน abrt.conf" - -@@ -1154,16 +1241,18 @@ msgstr "บันทึกข้อมูลที่แยกแล้วใน - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ทำให้อ่านโลกของไดเรกทอรีปัญหาได้" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit" - -@@ -1172,9 +1261,13 @@ msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "ไม่สามารถปรับปรุงปัญหาได้: พบ oops มากกว่าหนึ่ง" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1193,6 +1286,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1216,11 +1310,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1234,16 +1330,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1251,18 +1350,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1281,14 +1383,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1297,12 +1402,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1312,58 +1463,62 @@ msgstr "" - "\n" - "แยก Xorg crash จาก FILE (หรือการป้อนมาตรฐาน)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Print พบ crash data บนการป้อนมาตรฐาน" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "สร้างไดเรกทอรีปัญหาใน DIR สำหรับทุก crash ที่พบ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1860,7 +2015,7 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "หลับเป็นเวลา %d วินาที" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1868,7 +2023,7 @@ msgstr "" - "เกิดปัญหากับเคอร์เนลเพราะ BIOS เสียหาย น่าเสียดายจัง " - "ปัญหาบางประการไม่สามารถซ่อมได้โดยผู้เชี่ยวชาญด้านเคอร์เนล" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1876,7 +2031,7 @@ msgstr "" - "เกิดปัญหากับเคอร์เนล แต่ฮาร์ดแวร์ของคุณไม่ถูกรองรับ ดังนั้น " - "ผู้เชี่ยวชาญด้านเคอร์เนลจะแก้ปัญหานี้ไม่ได้" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1885,44 +2040,44 @@ msgstr "" - "เกิดปัญหากับเคอร์เนล แต่เคอร์เนลของคุณเสีย (flags:%s) ดังนั้น " - "ผู้เชี่ยวชาญด้านเคอร์เนลจะวิเคราะห์การรายงานส่วนที่เสียหายไม่ได้" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "โมดูลที่เสีย: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1944,65 +2099,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2010,49 +2166,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2061,24 +2227,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/tr.po b/po/tr.po -index 4c9676e..5557193 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/tr/)\n" - "Language: tr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -34,41 +34,41 @@ msgstr "Sorun Raporlama" - msgid "View and report application crashes" - msgstr "Uygulama çökmelerini görüntüle ve raporla" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' sahipliği alınamıyor" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s''i yazmak için dizin açılamıyor" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Bildirim kapatılamadı: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Tüh!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapor" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Yeniden Başlat" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun otomatik olarak raporlandı." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -77,8 +77,8 @@ msgstr "" - "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun İnternet bağlantısı olduğunda " - "raporlanacak." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -87,7 +87,7 @@ msgstr "" - "Üzgünüz, %s çökmüş gibi gözüküyor. Eğer bu durumu raporlamak istiyorsanız " - "lütfen geliştirici ile iletişime geçin." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -96,7 +96,7 @@ msgstr "" - "Üzgünüz, %s çökmüş gibi gözüküyor. Sorunun çözümüne yardımcı olmak " - "istiyorsanız lütfen bir rapor gönderin." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -104,7 +104,7 @@ msgstr "" - "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun otomatik " - "olarak raporlandı." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -112,7 +112,7 @@ msgstr "" - "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun, " - "İnternet bağlantısı olduğunda raporlanacak." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -120,34 +120,45 @@ msgstr "" - "Üzgünüz, bir sorun olmuş gibi gözüküyor. Eğer sorunun çözümüne yardımcı " - "olmak isterseniz lütfen bir rapor gönderin." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Bildirim gösterilemiyor: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -169,7 +180,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -202,30 +215,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -251,14 +276,14 @@ msgstr "Hakkında" - msgid "Quit" - msgstr "Çıkış" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -270,11 +295,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Dİzin problemi" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Yapılandırma dosyası" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -288,24 +313,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [seçenekler]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Sistem günlüğüne kaydet" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Program adlarını günlüğe ekle" - -@@ -313,60 +339,50 @@ msgstr "Program adlarını günlüğe ekle" - msgid "Unknown error" - msgstr "Bilinmeyen hata" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -374,12 +390,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -400,18 +416,22 @@ msgstr "Daemonize etme" - msgid "Log to syslog even with -d" - msgstr "Syslogları -d parametresi ile kullanın" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -441,73 +461,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -519,68 +540,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -604,18 +625,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -656,7 +685,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s için geri izleme ayrıştırması başarısız oldu" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -745,12 +774,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -859,14 +920,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1081,7 +1171,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1091,16 +1182,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1109,8 +1202,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1130,6 +1227,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1153,11 +1251,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1171,16 +1271,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1188,18 +1291,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1218,14 +1324,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1234,70 +1343,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1475,7 +1634,7 @@ msgstr "Geri izleme işi başladı." - #, c-format - msgid "Task Id: %s\n" - "Task Password: %s\n" --msgstr "Görev Id: %s\n" -+msgstr "Görev Id: %d\n" - "\n" - "Görev Şifresi: %s\n" - -@@ -1808,63 +1967,63 @@ msgstr "NSS in kapatılması başarısız" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1886,65 +2045,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Detaylı raporu göster" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1952,49 +2112,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2003,24 +2173,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/uk.po b/po/uk.po -index c025538..b00aa7b 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "Language: uk\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -34,34 +34,34 @@ msgstr "Звітування щодо проблем" - msgid "View and report application crashes" - msgstr "Перегляд і звітування щодо аварійних завершень програм" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Не вдалося визначити права доступу до «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Не вдалося відкрити каталог для запису, «%s»" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Не вдалося закрити сповіщення: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Оце тобі!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Повідомити" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Перезапустити" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -70,7 +70,7 @@ msgstr "" - "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Звіт " - "щодо проблеми створено у автоматичному режимі." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -80,8 +80,8 @@ msgstr "" - "щодо проблеми буде створено у автоматичному режимі, щойно стане доступним " - "інтернет-з’єднання." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -90,7 +90,7 @@ msgstr "" - "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Будь " - "ласка, зв’яжіться із розробником, якщо ви хочете створити звіт щодо вади." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -100,7 +100,7 @@ msgstr "" - "хочете допомогти у розв’язанні цієї проблеми, будь ласка, надішліть звіт " - "щодо вади." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -108,7 +108,7 @@ msgstr "" - "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми створено " - "у автоматичному режимі." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -116,7 +116,7 @@ msgstr "" - "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми буде " - "створено, щойно буде отримано доступ до інтернет-з’єднання." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -124,28 +124,28 @@ msgstr "" - "Вибачте, здається, у компоненті сталася помилка. Якщо ви хочете допомогти у " - "розв’язанні цієї проблеми, будь ласка, надішліть звіт щодо вади." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Не вдалося показати сповіщення: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Не вдалося виконати читання з каналу gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Не вдалося встановити кодування на каналі gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Не вдалося увімкнути режим без блокування для каналу gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -155,6 +155,17 @@ msgstr "" - "\n" - "Аплет для сповіщення користувача про виявлені ABRT проблеми\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Питати перед перехопленням каталогу" -@@ -176,13 +187,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Файл дампу ядра (coredump) потрібен для створення даних трасування стека, " --"тривалої і ресурсомісткої дії. У ABRT передбачено службу створення " --"трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити " --"дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT " --"вивантажуватиме дамп ядра без додаткових підтверджень." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -228,10 +236,6 @@ msgstr "" - "звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Питати перед вивантаженням дампу ядра" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -240,15 +244,15 @@ msgstr "" - "вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту " - "конфіденційних даних." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Обмежувати доступ до звітів з конфіденційними даними" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Сповіщати про неповні дані щодо проблеми" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -258,6 +262,22 @@ msgstr "" - "виходу користувача з системи. З метою забезпечення змістовності звітів щодо " - "вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "З_акрити" -@@ -283,7 +303,7 @@ msgstr "Відомості" - msgid "Quit" - msgstr "Вийти" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -293,7 +313,7 @@ msgstr "" - "\n" - "Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -305,11 +325,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Проблемний каталог" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Файл налаштувань" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Використовувати цей каталог як кореневий для RPM" - -@@ -325,24 +345,25 @@ msgstr "& [-v] -d КАТАЛОГ\n" - msgid "Root directory for running container commands" - msgstr "Кореневий каталог для запуску команд контейнера" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [параметри]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Використовувати вказане число як uid клієнта" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Записувати до журналу syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Додати назви програм до журналу" - -@@ -350,62 +371,52 @@ msgstr "Додати назви програм до журналу" - msgid "Unknown error" - msgstr "Невідома помилка" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "«%s» не є коректним каталогом проблеми" -+msgid "'%s' is not a valid element name" -+msgstr "«%s» не є коректною назвою елемента" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Не вдалося змінити елемент «%s»" -+msgid "'%s' is not a valid problem directory" -+msgstr "«%s» не є коректним каталогом проблеми" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Не уповноважено" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Не вдалося отримати доступ до проблеми для внесення змін" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Не вдалося змінити елемент «%s»" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна " - "знайти у журналах системи." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Не вдалося отримати доступ до проблеми для читання" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "«%s» не є коректною назвою елемента" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Не вдалося визначити розмір «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Не залишилося вільного місця для записів щодо проблем" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Не вдалося вилучити елемент «%s» з каталогу проблеми «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -415,12 +426,12 @@ msgstr "" - "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу " - "з цією назвою.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Завершувати роботу після вказаної кількості секунд бездіяльності" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Цю програму слід запускати від імені адміністратора (root)." - -@@ -447,18 +458,22 @@ msgstr "Не запускати фонової служби" - msgid "Log to syslog even with -d" - msgstr "Записувати до журналу syslog навіть з параметром -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ПОДІЯ КАТАЛОГ..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Виконати ДІЮ над даними каталогу КАТАЛОГ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Обмінюватися даними безпосередньо з користувачем" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -496,88 +511,89 @@ msgstr "Кількість паралельних потоків обробки. - msgid "Maximal cache size in MiB. Default is " - msgstr "Максимальний розмір кешу у МіБ. Типовим є" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Вимикає розпізнавання" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Ім’я користувача у системі Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Пароль у системі Red Hat Support. Якщо не вказано, програма надішле запит " - "щодо його введення." - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Шляхи до сертифікатів SSL uReport або тип сертифікатів" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Вам також слід вказати --username, якщо використовується --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Ви можете скористатися --username або --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Ви можете скористатися --username або --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Ви можете скористатися --anonymous або --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Некоректна кількість параметрів" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Невідоме значення параметра: «%s»\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Пароль:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Неможливо продовжувати без пароля\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Автозвітування з розпізнаванням HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Автозвітування з розпізнаванням клієнта SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "анонімне автозвітування" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -597,68 +613,68 @@ msgstr "" - " КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n" - " НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Не є каталогом: «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Пропускаємо: «{0}» (починається з похилої риски)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Пропускаємо: «{0}» (починається з крапки)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Пропускаємо: «{0}» (містить ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Пропускаємо: «{0}» (містить пробіл)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Пропускаємо: «{0}» (містить символ табуляції)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Не вдалося змінити каталог на «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Невідомий тип файла: «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Не вдалося створити робочий каталог у «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Не вдалося пересунути «{0}» до «{1}»" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Не вдалося скопіювати «{0}» до «{1}»" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Помилка під час перевірки «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Розпаковуємо «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Не вдалося створити каталог «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Не вдалося розпакувати «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "«{0}» успішно оброблено" - -@@ -682,21 +698,29 @@ msgstr "Не вдалося змінити власника «%s»: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Спроба вилучення каталогу проблеми зазнала невдачі: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Не вдалося отримати список проблем з abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Не вдалося перевірити, чи існує елемент, за допомогою abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -743,7 +767,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Не вдалося обробити дані зворотного трасування для %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Не знайдено аварійного потоку обробки даних" - -@@ -852,7 +876,7 @@ msgstr "Не вдалося видобути повідомлення щодо - msgid "Oops text extracted successfully" - msgstr "Текст повідомлення щодо помилки успішно видобуто" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -861,6 +885,38 @@ msgstr "" - "обладнанням.\n" - "Ймовірно, цю проблему не пов’язано з програмним забезпеченням.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -1006,7 +1062,36 @@ msgstr "Не вистачає файла діагностичних даних: - msgid "All debuginfo files are available" - msgstr "Доступні всі файли діагностичних даних" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1017,7 +1102,7 @@ msgstr "" - "призвести до значного навантаження не мережу і використання значного об’єму " - "пам’яті на диску.)" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1257,7 +1342,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Зберегти як -d DumpLocation, DumpLocation вказано у abrt.conf" - -@@ -1267,16 +1353,18 @@ msgstr "Зберегти отримані дані у каталозі ПРОБ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Зробити каталог даних проблеми доступним для всіх користувачів" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Встановлення інтервалу створення каталогу проблеми у 1 секунду" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Вивести рядки пошуку до стандартного виведення і завершити роботу" - -@@ -1285,11 +1373,13 @@ msgstr "Вивести рядки пошуку до стандартного в - msgid "Failed to compile regex" - msgstr "Не вдалося скомпілювати формальний вираз" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про " --"помилки." - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1310,6 +1400,7 @@ msgstr "Не вдалося зберегти дані виявленої про - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Не вдалося ініціалізувати спостереження systemd-journal" - -@@ -1345,11 +1436,13 @@ msgstr "Створювати новий каталог проблеми для - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Почати читання systemd-journal з позиції КУРСОР" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Почати читання systemd-journal з кінця" - -@@ -1365,17 +1458,20 @@ msgstr "Те саме, що і -t INT, INT визначається у plugins/C - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Стежити за systemd-journal з останньої позиції спостереження (якщо така є)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Слід вказати або -c КУРСОР або -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не вдалося відкрити systemd-journal" - -@@ -1384,18 +1480,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "Не вдалося відфільтрувати у systemd-journal лише дані systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не вдалося пересунути курсор до кінця журналу" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Не вдалося встановити позицію курсора systemd-journal «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Не вдалося прочитати дані журналу." - -@@ -1426,28 +1525,77 @@ msgstr "" - "Остання позиція спостереження зберігається у " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Прочитати файли журналу з усіх машин" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Прочитати усі файли журналу з каталогу у PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Не вдалося ініціалізувати systemd-journal у каталозі «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Не вдалося відфільтрувати у systemd-journal лише дані ядра" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Не вдалося розпочати спостереження з позиції курсора «%s»" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1458,45 +1606,49 @@ msgstr "" - "Видобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних " - "даних)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Вивести знайдені дані щодо аварії до стандартного виводу" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " - "завершення роботи" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Не вдалося зберегти позицію спостереження журналу" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Не вдалося зберегти позицію спостереження журналу: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "Не відновлюємо позицію спостереження журналу: файла «%s» не існує" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Не вдалося відновити позицію спостереження з файла «%s»" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Не вдалося відновити позицію спостереження журналу: шлях «%s» не є адресою " - "звичайного файла" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1504,12 +1656,12 @@ msgstr "" - "Не вдалося відновити позицію спостереження журналу: файл «%s» перевищує за " - "розміром обмеження у %d байтів" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Не вдалося відновити позицію спостереження журналу: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1517,7 +1669,7 @@ msgstr "" - "увесь файл «%s»" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Не вдалося пересунути журнал до розташування курсора з файла «%s»" -@@ -2069,7 +2221,7 @@ msgstr "Не вдалося завершити роботу NSS." - msgid "Sleeping for %d seconds" - msgstr "Очікуємо %d секунд" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2077,7 +2229,7 @@ msgstr "" - "Проблеми з ядром виникли через помилки у BIOS. На жаль, супровідники ядра " - "системи не зможуть усунути такі проблеми." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2085,7 +2237,7 @@ msgstr "" - "Виникли проблеми з ядром, підтримки обладнання у системі не передбачено, " - "тому супровідники ядра не зможуть усунути цю проблему." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2095,24 +2247,24 @@ msgstr "" - "(прапорці:%s). Супровідники коду ядра не зможуть проаналізувати звіти щодо " - "ядра з небажаними модулями." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Модулі сумнівної якості: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Список ідентифікаторів вад" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Вкажіть адресу сервера bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Вкажіть випуск" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2122,20 +2274,20 @@ msgstr "" - "\n" - "Виконати пошук оновлень на сервері bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Пошук оновлень" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Для цього пакунка оновлень не знайдено" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Локальна версія пакунка є новішою за доступні оновлення" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2164,68 +2316,69 @@ msgstr "Вивести знайдені повідомлення про поми - msgid "Delete files with found oopses" - msgstr "Вилучити файли зі знайденими даними щодо помилок ядра" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "«%s» визначає декілька каталогів проблем" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Користування: abrt-cli [--version] КОМАНДА [КАТАЛОГ]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Показати список проблем [у вказаних каталогах]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Вилучити каталог даних проблеми КАТАЛОГ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Проаналізувати і створити звіт за даними з вказаного каталогу" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Показати дані щодо каталогу КАТАЛОГ" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Вивести кількість нещодавніх аварійних завершень роботи" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Обробка декількох проблем" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [параметри]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Показати список лише проблем, щодо яких не складено звітів" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Показати докладний звіт" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Вивести список лише тих проблем, які сталися після вказаної часової позначки" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Вивести список лише тих проблем, які сталися до вказаної часової позначки" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2237,53 +2390,63 @@ msgstr "" - "«abrt-auto-reporting enabled», відданої від імені користувача з правами " - "доступу root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [параметри] КАТАЛОГ..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - "Текст з розмірами, що перевищують вказані, буде обрізано під час показу" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Каталогу проблеми «%s» не існує" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Вивести лише кількість проблеми без жодних повідомлень" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Вивести дані щодо проблем, які сталися після вказаної часової позначки" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT виявлено записи проблем (%u). Докладніші дані може бути отримано за " - "допомогою такої команди: abrt-cli list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [параметри] КАТАЛОГ..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Вилучаємо «%s»" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [параметри] КАТАЛОГ..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Дії: вилучити(rm), інформація(i), пропустити(s):" -@@ -2292,25 +2455,180 @@ msgstr "Дії: вилучити(rm), інформація(i), пропусти - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Дії: вилучити(rm), звітувати(e), інформація(i), пропустити(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Звітуємо щодо «%s»" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Для переходу до наступної проблеми натисніть ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Вибирає лише проблеми, виявлені після вказаної часової позначки" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ur.po b/po/ur.po -index 5ff9b8d..9eae788 100644 ---- a/po/ur.po -+++ b/po/ur.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/ur/)\n" - "Language: ur\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/vi.po b/po/vi.po -index 1eba27c..a4a6fac 100644 ---- a/po/vi.po -+++ b/po/vi.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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/vi/)\n" - "Language: vi\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Báo cáo" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,62 +321,52 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Đổi quyền chủ nhân thư mục không thành. Kiểm tra bản ghi hệ thống để biết " - "thêm chi tiết." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Không thể có được kích thước của '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1778,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Hiển thị báo cáo chi tiết" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/zh_CN.po b/po/zh_CN.po -index 9a528f6..0fad725 100644 ---- a/po/zh_CN.po -+++ b/po/zh_CN.po -@@ -27,7 +27,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -37,7 +37,7 @@ msgstr "" - "abrt/language/zh_CN/)\n" - "Language: zh-CN\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -47,102 +47,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "无法获取 '%s' 的所有权" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "无法打开目录以写入 '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "无法关闭通知:%s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "报告" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "无法显示通知:%s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "无法读取 gio 频道:'%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "无法在 gio 频道中设定编码:%s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "无法为 gio 频道设定非阻断模式:%s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -151,6 +151,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "ABRT 探测到问题后,小程序会通知用户\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "占用目录前询问" -@@ -172,10 +183,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"核心转储对于执行费时费空间的栈回溯是一个必需的操作。ABRT 提供从核心转储生成栈回溯的远程服务但是您必须上传核心转储到该服务器。当禁用此选项后 " --"ABRT 将自动上传核心转储而不再询问。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -210,30 +221,42 @@ msgid "" - msgstr "当启用该选项后 ABRT 不再提示汇报问题。仅在缩略报告启用的情况下生效。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "在上传核心转储前询问" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "当启用这个选项后一旦检测到敏感数据 ABRT 将创建访问受限的错误报告。" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "为敏感信息请求隐私条目保护" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "通知不完整的问题" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "不完整的问题通常在电脑关机或用户登出时产生。为了提供有效的错误报告,ABRT 将不允许您提交此类问题。" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "关闭(_C)" -@@ -259,14 +282,14 @@ msgstr "关于" - msgid "Quit" - msgstr "退出" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -278,11 +301,11 @@ msgstr "" - msgid "Problem directory" - msgstr "问题目录" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "配置文件" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -296,24 +319,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "使用 NUM 作为客户端 UID" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "记录至 syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "在日志中添加程序名" - -@@ -321,60 +345,50 @@ msgstr "在日志中添加程序名" - msgid "Unknown error" - msgstr "未知错误" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' 不是有效的问题目录" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' 不是一个有效的元素名" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "无法修改 '%s' 元素" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' 不是有效的问题目录" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "未授权" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "无法访问该问题进行修改" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "变更目录属主失败。请检查系统日志以了解更多。" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' 不是一个有效的元素名" -+msgid "'%s' element can't be modified" -+msgstr "无法修改 '%s' 元素" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "变更目录属主失败。请检查系统日志以了解更多。" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "无法获取 '%s' 的大小" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "没有留出问题空间" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "无法从问题目录 '%s' 中删除元素 '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -382,12 +396,12 @@ msgid "" - "is not running.\n" - msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "闲置 NUM 秒后退出" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "此程序必须以 root 权限运行。" - -@@ -410,18 +424,22 @@ msgstr "不要在后台运行" - msgid "Log to syslog even with -d" - msgstr "即使加入 -d 选项也记录至 syslog" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR......" -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "在 DIR 中运行 EVENT " - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "直接联系用户" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -459,87 +477,88 @@ msgstr "并行工作者数量。 默认为" - msgid "Maximal cache size in MiB. Default is " - msgstr "以 MiB 计最大缓存尺寸。默认为" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "关闭认证" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat 支持用户名" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL 证书路径或者证书类型" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "您还需要为 --password 指定 --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "您可以使用 --username 或者 --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "您可以使用 --username 或者 --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "您可以使用 --anonymous 或者 --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "无效参数数值" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "未知选项值:'%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "密码:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "需要密码才可继续\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP 认证的自动报告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL 客户端认证的自动报告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "匿名自动报告" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -559,83 +578,83 @@ msgstr "" - " FILENAME - 已上传归档文件吗\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "不是一个目录:'{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "跳过:'{0}'(以斜杠开始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "跳过:'{0}'(以点开始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "跳过:'{0}'(包含..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "跳过:'{0}'(包含空格)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "跳过:'{0}'(包含 tab)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "无法该为目录 '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "未知文件类型:'{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "无法在 '{0}' 在这创建工作目录" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "无法从 '{0}' 迁移到 '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "无法从 '{0}' 迁复制 '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' 中的验证错误" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "正在解压缩 '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "无法创建 '{0}' 目录" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "无法解压缩 '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "成功处理 '{0}'" - -@@ -659,18 +678,26 @@ msgstr "无法变更 '%s' 的属主:%s" - msgid "Deleting problem directory failed: %s" - msgstr "删除问题目录失败:%s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "无法从 abrt-dbus 中获取问题数据:%s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "无法从 abrt-dbus 中获取问题列表:%s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "无法从 abrt-dbus 中获取问题数据:%s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -715,7 +742,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr " %s 回溯解析失败" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "崩溃线程" - -@@ -817,13 +844,45 @@ msgstr "无法提取异常信息: '{0}'" - msgid "Oops text extracted successfully" - msgstr "成功提取异常文字信息" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "内核日志表明已探测到硬件错误。\n" - "这很可能不是普通的软件问题。\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -936,14 +995,43 @@ msgstr "缺少 debuginfo 文件:{0}" - msgid "All debuginfo files are available" - msgstr "所有调试信息文件均可用。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "可以上传核心转储了吗(可能包含敏感数据)?如果您的回答为“否”,则会在本地生成一个栈跟踪(可能会下载大量数据)。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1173,7 +1261,8 @@ msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "与 -d DumpLocation 相同,是在 abrt.conf 中指定 DumpLocation。" - -@@ -1183,16 +1272,18 @@ msgstr "保存提取信息到PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "使问题目录可读" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "每 1 秒创建一个控流问题目录" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "输出搜索字符串至标准输出并退出" - -@@ -1202,9 +1293,13 @@ msgstr "输出搜索字符串至标准输出并退出" - msgid "Failed to compile regex" - msgstr "编译正则表达式失败" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "无法更新问题:发现超过一个异常" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1223,6 +1318,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1246,11 +1342,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1264,16 +1362,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1281,18 +1382,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1311,14 +1415,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1327,12 +1434,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1341,58 +1494,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "从文件 FILE (或标准输入)提取 Xorg 崩溃信息" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "在标准输出上输出找到的崩溃数据" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1902,43 +2059,43 @@ msgstr "关闭 NSS 失败。" - msgid "Sleeping for %d seconds" - msgstr "休眠 %d 秒" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "由于 BIOS 出错出现内核问题。遗憾的是内核维护者尚未解决这个问题。" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "出现内核问题,但您的硬件不支持,因此内核维护者无法修复这个问题。" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "发生了内核问题,但您的内核已被污染(标志:%s)。内核维护器无法诊断被污染的报告。" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "受污染的模块:%s。" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Bug 错误 ID 列表" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "指定一个 Bodhi 服务器地址" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "指定一个发行版本号" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1948,20 +2105,20 @@ msgstr "" - "\n" - "在 Bodhi 服务器上搜索更新" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "正在搜索更新" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "未找到该软件包的可用更新" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "该软件包的本地版本比可用更新的版本要高" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1985,66 +2142,67 @@ msgstr "打印已找到的内核错误" - msgid "Delete files with found oopses" - msgstr "删除已找到的内核错误文件" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' 标识出多于一个问题目录" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "列出所有问题,可指定[目录]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "删除问题目录 DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "分析并报告 DIR 中的问题数据" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "输出有关 DIR 的信息" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "显示最近的崩溃计数" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "处理多个问题" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "详情请查看 'abrt-cli COMMAND --help'" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "只列出未报告的问题" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "显示详细报告" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "仅列出比指定时间更晚的问题" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "仅列出比指定时间戳更早的问题" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2054,53 +2212,63 @@ msgstr "" - "已禁用自动报告功能。请考虑启用它,方法是\n" - "作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "大于此处的文字在显示时会被削减" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "没有问题目录 '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "仅显示问题计数。" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "仅显示比指定时间更晚的问题。" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "正在删除 '%s'" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "报告后删除 PROBLEM_DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "正在删除 '%s'" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "动作:remove(rm), info(i), skip(s):" -@@ -2111,27 +2279,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "动作:remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "正在报告 '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "下一个问题请按 ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "没有 --since 参数,则重复所有探测到的问题。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "只选择时间戳之后探测到的问题" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/zh_TW.po b/po/zh_TW.po -index f3c4ca5..8c51262 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -8,21 +8,22 @@ - # Jiří Moskovčák , 2011 - # Terry Chuang , 2011-2013 - # Chester Cheng , 2015. #zanata -+# Ding-Yi Chen , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+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-21 07:48-0400\n" --"Last-Translator: Cheng-Chia Tseng \n" -+"PO-Revision-Date: 2016-02-01 06:25-0500\n" -+"Last-Translator: Ding-Yi Chen \n" - "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" - "abrt/language/zh_TW/)\n" - "Language: zh-TW\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,102 +33,102 @@ msgstr "問題回報" - msgid "View and report application crashes" - msgstr "檢視與回報應用程式崩潰" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "無法掌握「%s」的擁有權" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "無法開啟目錄以寫入「%s」" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "無法關閉通知:%s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "噢喔!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "回報" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "重新啟動" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "我們很抱歉,%s 似乎當掉了。此問題已經自動回報。" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "我們很抱歉,%s 似乎當掉了。此問題會在網際網路可用時回報。" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "我們很抱歉,%s 似乎當掉了。如果您想要回報該議題,請聯絡開發者。" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "我們很抱歉,%s 似乎當掉了。若您想要協助解決這個議題,請傳送回報。" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題已經自動回報。" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題會在網際網路可用時回報。" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "我們很抱歉,似乎遭遇某個問題。若您想要協助解決這個議題,請傳送回報。" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "無法顯示通知:%s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "無法從 gio 通道讀取:「%s」" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "無法設定 gio 通道上的編碼:%s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "無法為 gio 通道啟動不阻擋模式:%s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -136,6 +137,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "新問題被 ABRT 偵測到時通知使用者的面板程式\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "在佔用目錄前詢問" -@@ -157,10 +169,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT " --"提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -196,30 +208,42 @@ msgid "" - msgstr " 啟用此選項後,ABRT 永遠不會顯示問題回報通知。僅在啟用簡短回報時生效。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "在上傳核心傾印前詢問意願" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr " 若啟用此選項,當 ABRT 偵測到敏感資訊時總會以限制存取方式建立臭蟲回報。" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "內含敏感訊息故申請隱私請票" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "通知不完整的問題" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用者正在登出時被偵測到。為了提供有價值的問題回報,ABRT 不會允許您提交此類問題報告。" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "關閉(_C)" -@@ -245,7 +269,7 @@ msgstr "關於" - msgid "Quit" - msgstr "退出" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -254,7 +278,7 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "查詢軟體包資料庫,並儲存軟體包與組件名稱" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -266,11 +290,11 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - msgid "Problem directory" - msgstr "問題目錄" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "組態檔" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "使用此目錄作為 RPM 根基" - -@@ -286,24 +310,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "執行容器指令的根基目錄" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [選項]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "使用 NUM 作為客戶端 UID" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "紀錄至 syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "加入程式名稱至紀錄檔" - -@@ -311,60 +336,50 @@ msgstr "加入程式名稱至紀錄檔" - msgid "Unknown error" - msgstr "未知錯誤" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "「%s」不是有效的問題目錄" -+msgid "'%s' is not a valid element name" -+msgstr "「%s」不是有效的元素名稱" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "無法修改「%s」元素" -+msgid "'%s' is not a valid problem directory" -+msgstr "「%s」不是有效的問題目錄" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "未授權" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "無法存取問題以修改" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "無法修改「%s」元素" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "無法存取問題以閱讀" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "「%s」不是有效的元素名稱" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "無法取得「%s」的大小" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "無剩餘問題空間" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -372,12 +387,12 @@ msgid "" - "is not running.\n" - msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "在停止使用 NUM 秒後離開" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "此程式必須以 root 身份執行。" - -@@ -400,18 +415,22 @@ msgstr "不要在幕後運行" - msgid "Log to syslog even with -d" - msgstr "即使加上 -d 參數也紀錄至 syslog" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "於 DIR 執行 EVENT" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "直接與使用者溝通" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -449,87 +468,88 @@ msgstr "同時工作序數量。預設為 " - msgid "Maximal cache size in MiB. Default is " - msgstr "最大快取大小,單位為 MiB。預設為 " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "關閉身份認證" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support 使用者名稱" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL 憑證路徑或憑證類型" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "使用 --password 時必須指定 --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "您可以使用 --username 或 --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "您可以使用 --username 或 --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "您可以使用 --anonymous 或 --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "無效的引數數目" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "未知的選項值:「%s」\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "密碼:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "沒有密碼無法繼續\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP 身份認證自動回報" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL 用戶端身份憑證自動回報" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "匿名自動回報" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -549,83 +569,83 @@ msgstr "" - " FILENAME - 上傳過的封存檔名稱\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "不是目錄:「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "略過:「{0}」(以 / 起頭)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "略過:「{0}」(以 . 起頭)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "略過:「{0}」(含有 ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "略過:「{0}」(含有空白)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "略過:「{0}」(含有跳格符)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "無法切換目錄至「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "未知檔案類型:「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "無法在「{0}」中建立工作目錄" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "無法將「{0}」移動至「{1}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "無法將「{0}」複製至「{1}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "驗證「{0}」上的錯誤" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "正在解開「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "無法建立「{0}」目錄" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "無法解開「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "「{0}」處理成功" - -@@ -649,21 +669,29 @@ msgstr "無法 chown 「%s」:%s" - msgid "Deleting problem directory failed: %s" - msgstr "刪除問題目錄失敗:%s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "無法從 abrt-dbus 取得問題資料:%s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "無法從 abrt-dbus 取得問題清單:%s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "無法從 abrt-dbus 取得問題資料:%s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "無法測試元素是否存在 abrt-dbus 上:%s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -704,7 +732,7 @@ msgstr "& [選項] -d DIR\n" - msgid "Backtrace parsing failed for %s" - msgstr "%s 的追蹤解析失敗" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "沒有找到崩潰執行序" - -@@ -808,13 +836,45 @@ msgstr "無法抽出 oops 訊息:「{0}」" - msgid "Oops text extracted successfully" - msgstr "Oops 內文已成功抽出" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "內核記錄指出有偵測到硬體錯誤。\n" - "這很可能不是軟體問題。\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -949,14 +1009,43 @@ msgstr "遺失 debuginfo 檔:{0}" - msgid "All debuginfo files are available" - msgstr "所有的 debuginfo 檔案皆可用" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "確定要上傳核心傾印?(它可能包含敏感資料)。若您的答案為「否」,將會在本地建立堆疊追蹤。(這可能需要下載大量資料)。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1186,7 +1275,8 @@ msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" - -@@ -1196,16 +1286,18 @@ msgstr "將抽出的資訊存入 PROBLEM 中" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "讓問題目錄全世界都可以讀取" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "節制問題目錄的建立速度為每秒 1 個" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "將搜尋字串列印在 stdout 上並離開" - -@@ -1215,9 +1307,13 @@ msgstr "將搜尋字串列印在 stdout 上並離開" - msgid "Failed to compile regex" - msgstr "無法編譯 regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "無法更新問題:找到超過一份 oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1236,6 +1332,7 @@ msgstr "無法在 abrt 資料庫中儲存偵測問題資料" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "無法初始化 systemd-journal watch" - -@@ -1259,11 +1356,13 @@ msgstr "在 DIR 目錄中為每個核心傾印建立新的問題目錄" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "開始從 CURSOR 位置讀取 systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "開始從尾端讀取 systemd-journal" - -@@ -1277,16 +1376,19 @@ msgstr "與 -t INT 相同,INT 則在 plugins/CCpp.conf 中指定" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "從上次查看的位置開始跟隨 systemd-journal (如果有的話)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "您需要指定 -c CURSOR 或 -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "無法開啟 systemd-journal" - -@@ -1294,18 +1396,21 @@ msgstr "無法開啟 systemd-journal" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "無法過濾 systemd-journal 僅取用 systemd-coredump 資料" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "無法查找到日誌尾端" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "無法設定 systed-journal 游標「%s」" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "無法讀取日誌資料。" - -@@ -1324,14 +1429,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "從所有機器讀取日誌檔" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1340,12 +1448,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "無法過濾 systemd-journal 僅取用內核資料" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "無法從游標「%s」啟動監視" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1354,58 +1508,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "從 FILE (或標準輸出) 抽出 Xorg 當機資訊" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "將找到的崩潰資料列印在標準輸出上" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "無法儲存日誌監視的位置" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "無法儲存日誌監視的位置:open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "不還原日誌監視的位置:不存在「%s」檔案" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "無法從檔案「%s」還原日誌監視的位置" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "無法還原日誌監視的位置:「%s」路徑並非通常檔案" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "無法還原日誌監視的位置:「%s」檔案超出 %dB 大小限制" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "無法還原日誌監視的位置:open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "無法還原日誌監視的位置:無法讀取整份「%s」檔案" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "無法將日誌從檔案「%s」移到游標處" -@@ -1916,43 +2074,43 @@ msgstr "無法關閉 NSS。" - msgid "Sleeping for %d seconds" - msgstr "正睡眠 %d 秒" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "由於 BIOS 損壞而遭遇內核問題。很遺憾必須要告訴您,這樣的問題並無法由內核維護者修正。" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "遭遇一項內核問題,但實際上並不受支援您的硬體,因此內核維護者無法修正此問題。" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "遭遇一項內核問題,但您的內核已經損壞 (旗標:%s)。內核維護者無法診斷損壞的回報有什麼問題。" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "損壞的模組:%s。" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "臭蟲 ID 清單" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "指定 bodhi 伺服器 URL" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "指定發行版" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1962,20 +2120,20 @@ msgstr "" - "\n" - "在 bodhi 伺服器上搜尋是否有可用更新" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "搜尋是否有更新" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "找不到此軟體包的更新" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "本地端的軟體包版本比可用更新的版本還新" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1999,66 +2157,67 @@ msgstr "列印找到的 oops" - msgid "Delete files with found oopses" - msgstr "刪除找到的 oops 其檔案" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "「%s」辨識出一個以上的問題目錄" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "列出 [DIRs 中] 的問題" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "從問題目錄 DIR 移除檔案" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "在 DIR 內分析並回報問題資料" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "列印有關 DIR 的資訊" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "列印最近程式崩潰的數目" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "處理多項問題" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "僅列出尚未回報的問題" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "顯示詳細的回報" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "僅列出比指定的時間戳記更近期的問題" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "僅列出比指定的時間戳記更之前的問題" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2067,53 +2226,63 @@ msgid "" - msgstr "已停用自動回報功能。請考慮以取得 root 特權的使用者執行\n" - "「abrt-auto-reporting enabled」指令啟用此功能\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [選項] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "大於此的文字會刪減顯示" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "沒有這個問題目錄「%s」" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "僅列印問題數目而不帶任何訊息" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "僅列印比指定的時間戳記更近期的問題" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行:abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "正在刪除「%s」" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [選項] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "在回報後移除 PROBLEM_DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "正在刪除「%s」" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" -@@ -2124,27 +2293,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "正在回報「%s」" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "下個問題請按 ENTER 鍵。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "僅選取時間戳記之後的問題" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " --- -2.5.0 - diff --git a/0004-translations-add-missing-new-line.patch b/0004-translations-add-missing-new-line.patch deleted file mode 100644 index 659f3ad..0000000 --- a/0004-translations-add-missing-new-line.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 0a918dd4d1aee2a90de212f932c01081c73791cd Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 11 Feb 2016 15:26:27 +0100 -Subject: [PATCH] translations: add missing new line - -Signed-off-by: Jakub Filak ---- - po/km.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/po/km.po b/po/km.po -index 84bb1b1..ab7a684 100644 ---- a/po/km.po -+++ b/po/km.po -@@ -137,7 +137,7 @@ msgid "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" --"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" -+"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" --- -2.5.0 - diff --git a/0005-Fix-minor-typo-possition-position.patch b/0005-Fix-minor-typo-possition-position.patch deleted file mode 100644 index 2a51ab2..0000000 --- a/0005-Fix-minor-typo-possition-position.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 7dca143dd91229e0dad78bcdead6748ecf27cbd3 Mon Sep 17 00:00:00 2001 -From: Yuri Chornoivan -Date: Fri, 12 Feb 2016 22:51:18 +0200 -Subject: [PATCH] Fix minor typo: possition -> position - ---- - src/plugins/abrt-dump-journal-xorg.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-dump-journal-xorg.c b/src/plugins/abrt-dump-journal-xorg.c -index 87dfe13..1ede56f 100644 ---- a/src/plugins/abrt-dump-journal-xorg.c -+++ b/src/plugins/abrt-dump-journal-xorg.c -@@ -147,7 +147,7 @@ int main(int argc, char *argv[]) - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" -- "the entire journal if the last seen possition is not available.\n" -+ "the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" --- -2.5.0 - diff --git a/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch b/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch deleted file mode 100644 index 833cd94..0000000 --- a/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch +++ /dev/null @@ -1,33 +0,0 @@ -From a136d0c7b8aa72e7cf60e1255504191f1e9ac800 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 16 Feb 2016 10:53:06 +0100 -Subject: [PATCH] a-a-save-package-data: blacklist - /usr/lib(64)/firefox/plugin-container - -/usr/lib(64)/firefox/plugin-container is a sandbox/launcher for Firefox -plug-ins. When it crases Firefox loads it again so we don't want those crashes -reported. - -Related to: rhbz#1308840 - -Signed-off-by: Matej Habrnal ---- - src/daemon/abrt-action-save-package-data.conf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf -index 58f5061..f3a808f 100644 ---- a/src/daemon/abrt-action-save-package-data.conf -+++ b/src/daemon/abrt-action-save-package-data.conf -@@ -15,7 +15,7 @@ ProcessUnpackaged = yes - - # Blacklisted executable paths (shell patterns) - # --BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer -+BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib*/firefox/plugin-container - - # interpreters names - Interpreters = python2, python2.7, python, python3, python3.3, python3.4, python3.5, perl, perl5.16.2 --- -2.5.0 - diff --git a/0009-a-a-install-debuginfo-make-tmpdir-variable-global.patch b/0009-a-a-install-debuginfo-make-tmpdir-variable-global.patch deleted file mode 100644 index ca126b9..0000000 --- a/0009-a-a-install-debuginfo-make-tmpdir-variable-global.patch +++ /dev/null @@ -1,85 +0,0 @@ -From 715fcfb5d83faa29f8d221d0e2d800b08261810a Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 8 Mar 2016 16:42:31 +0100 -Subject: [PATCH] a-a-install-debuginfo: make tmpdir variable global - -Function clean_up() has one required parameter tmpdir. -Without this commit clean_up() function raises an exception because it was -called without the parameter. - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-install-debuginfo.in | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index f70ebcd..7818ffd 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -20,7 +20,8 @@ import problem - RETURN_OK = 0 - # serious problem, should be logged somewhere - RETURN_FAILURE = 2 -- -+# path to tmp directory has to be global because of clean_up() -+TMPDIR = None - - GETTEXT_PROGNAME = "abrt" - import locale -@@ -43,11 +44,11 @@ def init_gettext(): - gettext.textdomain(GETTEXT_PROGNAME) - - def sigterm_handler(signum, frame): -- clean_up() -+ clean_up(TMPDIR) - exit(RETURN_OK) - - def sigint_handler(signum, frame): -- clean_up() -+ clean_up(TMPDIR) - print("\n{0}".format(_("Exiting on user command"))) - sys.stdout.flush() - # ??! without "sys.", I am getting segv! -@@ -63,7 +64,6 @@ if __name__ == "__main__": - fbuild_ids = "build_ids" - cachedirs = [] - size_mb = 4096 -- tmpdir = None - keeprpms = False - noninteractive = False - b_ids = [] -@@ -135,7 +135,7 @@ if __name__ == "__main__": - except: - pass - elif opt == "--tmpdir": -- tmpdir = arg -+ TMPDIR = arg - elif opt == "--keeprpms": - keeprpms = True - # --exact takes precendece over --ids -@@ -159,11 +159,11 @@ if __name__ == "__main__": - - if not cachedirs: - cachedirs = ["/var/cache/abrt-di"] -- if not tmpdir: -+ if not TMPDIR: - # security people prefer temp subdirs in app's private dir, like /var/run/abrt - # and we switched to /tmp but Fedora feature tmp-on-tmpfs appeared, hence we must - # not use /tmp for potential big data anymore -- tmpdir = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) -+ TMPDIR = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) - - - if missing == None: -@@ -235,7 +235,7 @@ if __name__ == "__main__": - sys.exit(RETURN_FAILURE) - - # TODO: should we pass keep_rpms=keeprpms to DebugInfoDownload here?? -- downloader = download_class(cache=cachedirs[0], tmp=tmpdir, -+ downloader = download_class(cache=cachedirs[0], tmp=TMPDIR, - noninteractive=noninteractive, - repo_pattern=repo_pattern) - try: --- -2.5.5 - diff --git a/0010-a-a-install-debuginfo-fix-BrokenPipe-error.patch b/0010-a-a-install-debuginfo-fix-BrokenPipe-error.patch deleted file mode 100644 index 053ded4..0000000 --- a/0010-a-a-install-debuginfo-fix-BrokenPipe-error.patch +++ /dev/null @@ -1,49 +0,0 @@ -From a999c2e9c25a46ffeff0c67ad9b9177d640a4b87 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 8 Mar 2016 16:45:36 +0100 -Subject: [PATCH] a-a-install-debuginfo: fix BrokenPipe error - -While debug info is downloading and stop button is pressed the BrokenPipe -error appears. - -If the stop button is pressed, gui wizard sends SIGTERM to all -processes with the same group ID so abrt-action-install-debuginfo got SIGTERM -as well. It has its own SIGTERM handler which calls clean_up() function and it -takes a while before the tool is terminated. -abrt-action-install-debuginfo tries to write some messages to the closed socket -during the clean_up process and it raises a BrokenPipe exception. We must -ensure that no message will be printed after SIGTERM is recieved. - -Related to: #1255259 - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-install-debuginfo.in | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index 7818ffd..e4a7dfd 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -44,7 +44,7 @@ def init_gettext(): - gettext.textdomain(GETTEXT_PROGNAME) - - def sigterm_handler(signum, frame): -- clean_up(TMPDIR) -+ clean_up(TMPDIR, silent=True) - exit(RETURN_OK) - - def sigint_handler(signum, frame): -@@ -241,6 +241,9 @@ if __name__ == "__main__": - try: - result = downloader.download(missing, download_exact_files=exact_fls) - except Exception as ex: -+ if ex.errno == errno.EPIPE: -+ clean_up(TMPDIR, silent=True) -+ exit(RETURN_FAILURE) - error_msg_and_die("Can't download debuginfos: %s", ex) - - if exact_fls: --- -2.5.5 - diff --git a/0011-Add-basic-documentation.patch b/0011-Add-basic-documentation.patch deleted file mode 100644 index 9dbab6a..0000000 --- a/0011-Add-basic-documentation.patch +++ /dev/null @@ -1,282 +0,0 @@ -From 92c847ef13cd721a37187c5878a05b54df48114a Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Sat, 20 Feb 2016 08:27:32 +0100 -Subject: [PATCH] Add basic documentation - -Signed-off-by: Jakub Filak ---- - CONTRIBUTING.md | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - INSTALL | 7 ----- - INSTALL.md | 56 ++++++++++++++++++++++++++++++++++ - Makefile.am | 2 ++ - README | 11 ------- - README.md | 48 +++++++++++++++++++++++++++++ - 6 files changed, 200 insertions(+), 18 deletions(-) - create mode 100644 CONTRIBUTING.md - delete mode 100644 INSTALL - create mode 100644 INSTALL.md - delete mode 100644 README - create mode 100644 README.md - -diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md -new file mode 100644 -index 0000000..4b27138 ---- /dev/null -+++ b/CONTRIBUTING.md -@@ -0,0 +1,94 @@ -+# Contributing to ABRT -+ -+Adopted from http://www.contribution-guide.org/ -+ -+BSD, Copyright (c) 2015 Jeff Forcier -+ -+## Submitting bugs -+ -+### Due diligence -+ -+Before submitting a bug, please do the following: -+ -+* Perform **basic troubleshooting** steps: -+ -+ * **Make sure you're on the latest version.** If you're not on the most -+ recent version, your problem may have been solved already! Upgrading is -+ always the best first step. -+ * **Try older versions.** If you're already *on* the latest release, try -+ rolling back a few minor versions (e.g. if on 1.7, try 1.5 or 1.6) and -+ see if the problem goes away. This will help the devs narrow down when -+ the problem first arose in the commit log. -+ * **Try switching up dependency versions.** If the software in question has -+ dependencies (other libraries, etc) try upgrading/downgrading those as -+ well. -+ -+* **Search the project's bug/issue tracker** to make sure it's not a known issue. -+* If you don't find a pre-existing issue, consider **checking with the mailing -+ list and/or IRC channel** in case the problem is non-bug-related. -+* Consult [README.md](README.md) for links to bugtracker, mailinglist or IRC. -+ -+### What to put in your bug report -+ -+Make sure your report gets the attention it deserves: bug reports with missing -+information may be ignored or punted back to you, delaying a fix. The below -+constitutes a bare minimum; more info is almost always better: -+ -+* **What version of the core programming language interpreter/compiler are you -+ using?** For example, if it's a Python project, are you using Python 2.7.3? -+ Python 3.3.1? PyPy 2.0? -+* **What operating system are you on?** Make sure to include release and distribution. -+* **Which version or versions of the software are you using?** Ideally, you -+ followed the advice above and have ruled out (or verified that the problem -+ exists in) a few different versions. -+* **How can the developers recreate the bug on their end?** If possible, -+ include a copy of your code, the command you used to invoke it, and the full -+ output of your run (if applicable.) -+ -+ * A common tactic is to pare down your code until a simple (but still -+ bug-causing) "base case" remains. Not only can this help you identify -+ problems which aren't real bugs, but it means the developer can get to -+ fixing the bug faster. -+ -+ -+## Contributing changes -+ -+It would be the best if you could discuss your plans with us on #abrt or on our -+mailinig list crash-catcher@lists.fedorahosted.org before you spent too much -+energy and time. -+ -+Before contributing, please, make yourself familiar with git. You can [try git -+online](https://try.github.io/). Things would be easier for all of us if you do -+your changes on a branch. Use a single commit for every logical reviewable -+change, without unrelated modifications (that will help us if need to revert a -+particular commit). Please avoid adding commits fixing your previous -+commits, do amend or rebase instead. -+ -+Every commit must have either comprehensive commit message saying what is being -+changed and why or a link (an issue number on Github) to a bug report where -+this information is available. It is also useful to include notes about -+negative decisions - i.e. why you decided to not do particular things. Please -+bare in mind that other developers might not understand what the original -+problem was. -+ -+### Full example -+ -+Here's an example workflow for a project `abrt` hosted on Github -+Your username is `yourname` and you're submitting a basic bugfix or feature. -+ -+* Hit 'fork' on Github, creating e.g. `yourname/abrt`. -+* `git clone git@github.com:yourname/abrt` -+* `cd abrt` -+* `git checkout -b foo_the_bars` to create new local branch named foo_the_bars -+* Hack, hack, hack -+* Run `make check` -+* `git status` -+* `git add` -+* `git commit -s -m "Foo the bars"` -+* `git push -u origin HEAD` to create foo_the_bars branch in your fork -+* Visit your fork at Github and click handy "Pull request" button. -+* In the description field, write down issue number (if submitting code fixing -+ an existing issue) or describe the issue + your fix (if submitting a wholly -+ new bugfix). -+* Hit 'submit'! And please be patient - the maintainers will get to you when -+ they can. -diff --git a/INSTALL b/INSTALL -deleted file mode 100644 -index 799a4a6..0000000 ---- a/INSTALL -+++ /dev/null -@@ -1,7 +0,0 @@ --How to install --============== -- --1. autogen.sh --2. ./configure --3. make --4. make install -diff --git a/INSTALL.md b/INSTALL.md -new file mode 100644 -index 0000000..96d42c4 ---- /dev/null -+++ b/INSTALL.md -@@ -0,0 +1,56 @@ -+# How to install -+ -+### Development dependencies -+ -+Build dependencies can be listed by: -+ -+ $ ./autogen.sh sysdeps -+ -+or installed by: -+ -+ $ ./autogen.sh sysdeps --install -+ -+The dependency installer gets the data from [the rpm spec file](abrt.spec.in) -+ -+### Building from sources -+ -+When you have all dependencies installed run the following commands: -+ -+ $ ./autogen.sh --prefix=/usr \ -+ --sysconfdir=/etc \ -+ --localstatedir=/var \ -+ --sharedstatedir=/var/lib -+ -+ $ make -+ -+or if you want to debug ABRT run: -+ -+ $ CFLAGS="-g -g3 -ggdb -ggdb3 -O0" ./autogen.sh --prefix=/usr \ -+ --sysconfdir=/etc \ -+ --localstatedir=/var \ -+ --sharedstatedir=/var/lib \ -+ --enable-debug -+ -+ $ make -+ -+### Checking -+ -+ABRT uses [Autotest](http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Using-Autotest.html) -+to validate source codes. Run the test by: -+ -+ $ make check -+ -+If you want to search for memory issues, build ABRT with debug options and then -+run: -+ -+ $ make maintainer-check -+ -+### Installing -+ -+If you need an rpm package, run: -+ -+ $ make rpm -+ -+otherwise run: -+ -+ $ make install -diff --git a/Makefile.am b/Makefile.am -index 01b8a97..e528c93 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -36,6 +36,8 @@ EXTRA_DIST = doc/coding-style abrt.spec.in abrt.pc.in \ - abrt-version asciidoc.conf init-scripts/* $(TESTSUITE_FILES) \ - augeas/test_abrt.aug - -+dist_doc_DATA = README.md -+ - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = abrt.pc - -diff --git a/README b/README -deleted file mode 100644 -index 26cbbcb..0000000 ---- a/README -+++ /dev/null -@@ -1,11 +0,0 @@ --These sources are in early stages. They are changing every day :-)... --Anyway, patches are welcome. -- --** Using Valgrind -- --When running ABRT under memcheck, GLib's environment variables should --be set to turn off glib's memory optimization, so valgrind is not --confused: -- --G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --tool=memcheck \ -- --leak-check=full abrtd -dvvv -diff --git a/README.md b/README.md -new file mode 100644 -index 0000000..e58a499 ---- /dev/null -+++ b/README.md -@@ -0,0 +1,48 @@ -+# ABRT -+ -+**A set of tools to help users detect and report application crashes.** -+ -+### About -+ -+Its main purpose is to ease the process of reporting an issue and finding a -+solution. -+ -+The solution in this context might be a bugzilla ticket, knowledge base article -+or a suggestion to update a package to a version containing a fix. -+ -+### Documentation -+ -+Every ABRT program and configuration file has a man page describing it. It is -+also possible to [read the ABRT documentation](http://abrt.readthedocs.org/) -+online. For contributors and developers, there are also [wiki -+pages](https://github.com/abrt/abrt/wiki) describing some topics to deeper -+technical details. -+ -+### Development -+ -+ * IRC Channel: #abrt on FreeNode -+ * [Mailing List](https://lists.fedorahosted.org/admin/lists/crash-catcher.lists.fedorahosted.org/) -+ * [Bug Reports and RFEs](https://github.com/abrt/abrt/issues) -+ * [Contributing to ABRT](CONTRIBUTING.md) -+ * [Install and run ABRT](INSTALL.md) -+ -+ -+### Running -+ -+ABRT consist of several services and many small utilities. While The utilities -+can be successfully run from the source directories after build, the services -+often uses the utilities to do actions and expect the utilities installed in -+the system directories. Hence to run the services, it is recommended to install -+ABRT first and run them as system services. The instructions how to build -+and install ABRT can be found in [INSTALL.md](INSTALL.md) -+ -+### Technologies -+ -+* [libreport](https://github.com/abrt/libreport) - problem data format, reporting -+* [satyr](https://github.com/abrt/satyr) - backtrace processing, micro-reports -+* [Python3](https://www.python.org/) -+* [GLib2](https://developer.gnome.org/glib/) -+* [Gtk3](https://developer.gnome.org/gtk3) -+* [D-Bus](https://www.freedesktop.org/wiki/Software/dbus/) -+* [SELinux](https://github.com/SELinuxProject/selinux/wiki) -+* [systemd](https://www.freedesktop.org/wiki/Software/systemd/) --- -2.5.5 - diff --git a/0021-Merge-a-a-save-kernel-data-with-a-a-save-package-dat.patch b/0021-Merge-a-a-save-kernel-data-with-a-a-save-package-dat.patch deleted file mode 100644 index bb33eca..0000000 --- a/0021-Merge-a-a-save-kernel-data-with-a-a-save-package-dat.patch +++ /dev/null @@ -1,350 +0,0 @@ -From 193f2898d9bf3c7f971d2e37a846b61857e7eb77 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 5 Apr 2016 15:09:39 +0200 -Subject: [PATCH] Merge a-a-save-kernel-data with a-a-save-package-data - -I forgot to do this while working on commit -650822d0d2438825515c0e41f06cd9fb77a18334 - -I do not think creating another tool doing almost the same thing was a -good idea. I believe we must keep relevant bits together and not to -spread functionality among myriads of tools just because someone do not -want to code in C. - -I failed to find any justification for creating -'abrt-action-save-kernel-data' instead of teaching -'abrt-action-save-package-data' to do that job: -130dee46d601f3af6bb196d99a5c911335506adf - -This commit changes contents of 'package' file from 'kernel' to -'kernel-$version' string. It should not break anything as I could not -find any justification for the 'kernel' string except the original -author's believe it should be like that (probably because of efficiency). - -Just for the record, we do not need the version in 'package' file -because the version is already included in 'kernel' file. - -This commit enables GPGCheck and ProcessUnpackaged options for -Kerneloopses and VMcores. - -Signed-off-by: Jakub Filak ---- - doc/Makefile.am | 1 - - doc/abrt-action-save-kernel-data.txt | 33 ------------- - src/daemon/abrt-action-save-package-data.c | 63 ++++++++++++++++-------- - src/plugins/Makefile.am | 2 - - src/plugins/abrt-action-save-kernel-data | 78 ------------------------------ - src/plugins/koops_event.conf | 3 +- - src/plugins/vmcore_event.conf | 2 +- - 7 files changed, 46 insertions(+), 136 deletions(-) - delete mode 100644 doc/abrt-action-save-kernel-data.txt - delete mode 100755 src/plugins/abrt-action-save-kernel-data - -diff --git a/doc/Makefile.am b/doc/Makefile.am -index d3184c4..4a5d94c 100644 ---- a/doc/Makefile.am -+++ b/doc/Makefile.am -@@ -32,7 +32,6 @@ MAN1_TXT += abrt-merge-pstoreoops.txt - MAN1_TXT += abrt-server.txt - MAN1_TXT += abrt-cli.txt - MAN1_TXT += abrt-action-save-package-data.txt --MAN1_TXT += abrt-action-save-kernel-data.txt - MAN1_TXT += abrt-install-ccpp-hook.txt - MAN1_TXT += abrt-action-analyze-ccpp-local.txt - MAN1_TXT += abrt-watch-log.txt -diff --git a/doc/abrt-action-save-kernel-data.txt b/doc/abrt-action-save-kernel-data.txt -deleted file mode 100644 -index f82fa35..0000000 ---- a/doc/abrt-action-save-kernel-data.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --abrt-action-save-kernel-data(1) --================================ -- --NAME ------ --abrt-action-save-kernel-data - Creates uReport mandatory files for kernel oopses. -- --SYNOPSIS ---------- --'abrt-action-save-kernel-data' -- --DESCRIPTION ------------- --The tool reads problem directory DIR. It analyzes contents of 'kernel' element, --checks database of installed packages, and creates new elements --'pkg_name', 'pkg_arch', 'pkg_version', 'pkg_release'. -- --These files are required by reporter-ureporter (mandatory in uReport). -- --Integration with ABRT events --~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --This tool can be used as an ABRT reporter. Example --fragment for /etc/libreport/report_event.conf: -- -------------- --# Determine in which package/component the crash happened (if not yet done): --EVENT=post-create analyzer=Kerneloops -- abrt-action-save-kernel-data -------------- -- --AUTHORS --------- --* ABRT team -diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c -index 72c9878..6f8c80d 100644 ---- a/src/daemon/abrt-action-save-package-data.c -+++ b/src/daemon/abrt-action-save-package-data.c -@@ -217,14 +217,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch - return 1; - - char *type = dd_load_text(dd, FILENAME_TYPE); -- if (!strcmp(type, "Kerneloops")) -- { -- dd_save_text(dd, FILENAME_PACKAGE, "kernel"); -- dd_save_text(dd, FILENAME_COMPONENT, "kernel"); -- dd_close(dd); -- free(type); -- return 0; -- } -+ bool kernel_oops = !strcmp(type, "Kerneloops") || !strcmp(type, "vmcore"); - free(type); - - char *cmdline = NULL; -@@ -233,12 +226,32 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch - char *package_short_name = NULL; - struct pkg_envra *pkg_name = NULL; - char *component = NULL; -+ char *kernel = NULL; - int error = 1; - /* note: "goto ret" statements below free all the above variables, - * but they don't dd_close(dd) */ - -- cmdline = dd_load_text_ext(dd, FILENAME_CMDLINE, DD_FAIL_QUIETLY_ENOENT); -- executable = dd_load_text(dd, FILENAME_EXECUTABLE); -+ if (kernel_oops) -+ { -+ kernel = dd_load_text(dd, FILENAME_KERNEL); -+ if (!kernel) -+ { -+ log("File 'kernel' containing kernel version not " -+ "found in current directory"); -+ goto ret; -+ } -+ /* Trim trailing white-spaces. */ -+ strchrnul(kernel, ' ')[0] = '\0'; -+ -+ log_info("Looking for kernel package"); -+ executable = xasprintf("/boot/vmlinuz-%s", kernel); -+ } -+ else -+ { -+ cmdline = dd_load_text_ext(dd, FILENAME_CMDLINE, DD_FAIL_QUIETLY_ENOENT); -+ executable = dd_load_text(dd, FILENAME_EXECUTABLE); -+ } -+ - - /* Do not implicitly query rpm database in process's root dir, if - * ExploreChroots is disabled. */ -@@ -249,8 +262,12 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch - /* Close dd while we query package database. It can take some time, - * don't want to keep dd locked longer than necessary */ - dd_close(dd); -+ dd = NULL; - -- if (is_path_blacklisted(executable)) -+ /* The check for kernel_oops is there because it could be an unexpected -+ * behaviour. If one wants to ignore kernel oops, she/he should disable -+ * the corresponding services. */ -+ if (!kernel_oops && is_path_blacklisted(executable)) - { - log("Blacklisted executable '%s'", executable); - goto ret; /* return 1 (failure) */ -@@ -265,13 +282,17 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch - "proceeding without packaging information", executable); - goto ret0; /* no error */ - } -- log("Executable '%s' doesn't belong to any package" -- " and ProcessUnpackaged is set to 'no'", -- executable -- ); -+ if (kernel_oops) -+ log("Can't find kernel package corresponding to '%s'", kernel); -+ else -+ log("Executable '%s' doesn't belong to any package" -+ " and ProcessUnpackaged is set to 'no'", executable); - goto ret; /* return 1 (failure) */ - } - -+ if (kernel_oops) -+ goto skip_interperter; -+ - /* Check well-known interpreter names */ - const char *basename = strrchr(executable, '/'); - if (basename) -@@ -314,11 +335,14 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch - pkg_name = script_pkg; - } - -+skip_interperter: - package_short_name = xasprintf("%s", pkg_name->p_name); - log_info("Package:'%s' short:'%s'", pkg_name->p_nvr, package_short_name); - -- -- if (g_list_find_custom(settings_setBlackListedPkgs, package_short_name, (GCompareFunc)g_strcmp0)) -+ /* The check for kernel_oops is there because it could be an unexpected -+ * behaviour. If one wants to ignore kernel oops, she/he should disable -+ * the corresponding services. */ -+ if (!kernel_oops && g_list_find_custom(settings_setBlackListedPkgs, package_short_name, (GCompareFunc)g_strcmp0)) - { - log("Blacklisted package '%s'", package_short_name); - goto ret; /* return 1 (failure) */ -@@ -358,11 +382,12 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch - if (component) - dd_save_text(dd, FILENAME_COMPONENT, component); - -- dd_close(dd); -- - ret0: - error = 0; - ret: -+ if (dd) -+ dd_close(dd); -+ - free(cmdline); - free(executable); - free(rootdir); -diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am -index 005cc9d..2c9028b 100644 ---- a/src/plugins/Makefile.am -+++ b/src/plugins/Makefile.am -@@ -6,7 +6,6 @@ bin_SCRIPTS = \ - abrt-action-analyze-vulnerability \ - abrt-action-list-dsos \ - abrt-action-perform-ccpp-analysis \ -- abrt-action-save-kernel-data \ - abrt-action-analyze-ccpp-local \ - abrt-action-notify - -@@ -101,7 +100,6 @@ EXTRA_DIST = \ - analyze_RetraceServer.xml.in \ - abrt-action-analyze-core.in \ - abrt-action-generate-machine-id \ -- abrt-action-save-kernel-data \ - abrt-action-ureport \ - abrt-gdb-exploitable \ - https-utils.h \ -diff --git a/src/plugins/abrt-action-save-kernel-data b/src/plugins/abrt-action-save-kernel-data -deleted file mode 100755 -index f8b18f0..0000000 ---- a/src/plugins/abrt-action-save-kernel-data -+++ /dev/null -@@ -1,78 +0,0 @@ --#!/bin/bash --# --# Save pkg_{name, arch, version, release} for kernel oopses. --# --# These files are required by reporter-ureporter (mandatory --# in uReport). --# -- --function print_usage --{ -- echo "Usage: abrt-action-save-package-data [OPTION]" -- echo "" -- echo " -r, --root ROOT use ROOT as top level directory" -- echo " -h, --help Show this help message" --} -- --ROOT="/" -- --while [ $# -gt 0 ]; --do -- case "$1" in -- "-r"|"--root") -- if [ -z "$2" ]; then -- >&2 -- echo "$1: requires argument" -- print_usage -- exit 1 -- fi -- -- ROOT=$2 -- shift -- ;; -- -- "-h"|"--help") -- echo "Save pkg_{name, arch, version, release} for kernel oopses." -- echo "" -- echo "These files are required by reporter-ureporter (mandatory" -- echo "in uReport)." -- -- print_usage -- exit 0 -- ;; -- -- *) -- >&2 -- echo "$1: unknown option" -- echo -- print_usage -- exit 1 -- ;; -- esac -- -- shift --done -- --if [ ! -f kernel ]; then -- echo "File 'kernel' containing kernel version not found in current directory" -- exit 1 --fi -- --echo "Looking for kernel package" --kernel_version="$( sed 's/ .*//' kernel )" -- --package="$( rpm --root $ROOT -qf "/boot/vmlinuz-$kernel_version" )" --if [ $? != 0 ]; then -- echo "Can't find kernel package corresponding to '$kernel_version'" -- echo "Can't record package version data (pkg_version, pkg_release, ...)." -- exit 1 --fi -- --echo "Kernel package $package found" --rpm --root $ROOT -q --qf "%{name}\n" "$package" > pkg_name --rpm --root $ROOT -q --qf "%{arch}\n" "$package" > pkg_arch --rpm --root $ROOT -q --qf "%{version}\n" "$package" > pkg_version --rpm --root $ROOT -q --qf "%{release}\n" "$package" > pkg_release --epoch="$( rpm --root $ROOT -q --qf "%{epoch}" "$package" )" --test "$epoch" = "(none)" && epoch=0 --echo "$epoch" > pkg_epoch -diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf -index df7e446..f273ba2 100644 ---- a/src/plugins/koops_event.conf -+++ b/src/plugins/koops_event.conf -@@ -16,8 +16,7 @@ EVENT=post-create type=Kerneloops remote!=1 - if test ! -f uuid -a ! -f duphash; then - abrt-action-analyze-oops || exit 1 - fi -- } && -- abrt-action-save-kernel-data -+ } - - - # If you want behavior similar to one provided by kerneloops daemon -diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf -index ae4dc9f..61bc9d1 100644 ---- a/src/plugins/vmcore_event.conf -+++ b/src/plugins/vmcore_event.conf -@@ -34,7 +34,7 @@ EVENT=post-create type=vmcore remote!=1 - # analyze - EVENT=analyze_VMcore type=vmcore - abrt-action-analyze-oops && -- abrt-action-save-kernel-data -+ abrt-action-save-package-data - - # If you want behavior similar to one provided by kerneloops daemon - # distributed by kerneloops.org - that is, if you want --- -2.7.4 - diff --git a/0023-a-retrace-client-format-security.patch b/0023-a-retrace-client-format-security.patch deleted file mode 100644 index 28155b6..0000000 --- a/0023-a-retrace-client-format-security.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 293f42b82ef4ac23b8d5327d32697f7308c3f76b Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 26 Apr 2016 08:18:36 +0200 -Subject: [PATCH] a-retrace-client: format security - -https://github.com/pld-linux/abrt/blob/d3f5b5cc7b5d86f4a4912d980a99d4c90024440d/format_security.patch - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-retrace-client.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-retrace-client.c b/src/plugins/abrt-retrace-client.c -index 540cdc9..ae5ef83 100644 ---- a/src/plugins/abrt-retrace-client.c -+++ b/src/plugins/abrt-retrace-client.c -@@ -760,7 +760,7 @@ static int create(bool delete_temp_archive, - if (response_code == 500 || response_code == 507) - { - alert_server_error(cfg.url); -- error_msg_and_die(http_body); -+ error_msg_and_die("%s", http_body); - } - else if (response_code == 403) - { --- -2.7.4 - diff --git a/0024-a-console-notification-do-not-leak-variables.patch b/0024-a-console-notification-do-not-leak-variables.patch deleted file mode 100644 index 6fc5efe..0000000 --- a/0024-a-console-notification-do-not-leak-variables.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 553bd2b7842a1f23510f4083b7a4762396381edb Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 26 Apr 2016 08:24:13 +0200 -Subject: [PATCH] a-console-notification: do not leak variables - -https://github.com/pld-linux/abrt/blob/adb4721f7f60f7c00f7f5e4f5f382207636140f3/profile.sh.patch - -Signed-off-by: Jakub Filak ---- - src/cli/abrt-console-notification.sh | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/cli/abrt-console-notification.sh b/src/cli/abrt-console-notification.sh -index a98f164..f1a79ff 100755 ---- a/src/cli/abrt-console-notification.sh -+++ b/src/cli/abrt-console-notification.sh -@@ -40,3 +40,5 @@ if [ -f "$TMPPATH" ]; then - fi - - timeout 10s abrt-cli status --since="$SINCE" 2>"$ABRT_DEBUG_LOG" || echo "'abrt-cli status' timed out" -+ -+unset ABRT_DEBUG_LOG LPATHDIR SINCEFILE TMPPATH SINCE --- -2.7.4 - diff --git a/0025-a-a-install-debuginfo-correct-handling-of-DebuginfoL.patch b/0025-a-a-install-debuginfo-correct-handling-of-DebuginfoL.patch deleted file mode 100644 index edcd45e..0000000 --- a/0025-a-a-install-debuginfo-correct-handling-of-DebuginfoL.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 16a8cbb75b69c36b7858004d605c24edc6806763 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 27 Apr 2016 09:36:10 +0200 -Subject: [PATCH] a-a-install-debuginfo: correct handling of DebuginfoLocation - -DebuginfoLocation is a list of colon separated file systemd paths, where -the first path is a directory for storing downloaded debuginfo data. - -Related #1135 - -Signed-off-by: Jakub Filak ---- - src/hooks/CCpp.conf | 10 +++++++++- - src/plugins/abrt-action-install-debuginfo.in | 6 ++++-- - 2 files changed, 13 insertions(+), 3 deletions(-) - -diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf -index 025189a..2466aff 100644 ---- a/src/hooks/CCpp.conf -+++ b/src/hooks/CCpp.conf -@@ -31,7 +31,15 @@ SaveFullCore = yes - # Used for debugging the hook - #VerboseLog = 2 - --# Specify where you want to store debuginfos (default: /var/cache/abrt-di) -+# Specify directories where ABRT should look for non-system debuginfos. -+# -+# Add a colon separated list of file system paths. -+# -+# Beware the first path in the list is used by ABRT to save downloaded -+# debuginfos, therefore the first path in the list must be _writable_, the -+# rest of the list can be read-only. -+# -+# (default: /var/cache/abrt-di) - # - #DebuginfoLocation = /var/cache/abrt-di - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index e4a7dfd..ad7a8d3 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -100,7 +100,9 @@ if __name__ == "__main__": - " -y Noninteractive, assume 'Yes' to all questions\n" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -- " --cache Default: /var/cache/abrt-di\n" -+ " --cache Colon separated list of directories. The first one is used for\n" -+ " saving installed debuginfos.\n" -+ " Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -155,7 +157,7 @@ if __name__ == "__main__": - except OSError as ex: - print(ex) - else: -- cachedirs = conf.get("DebuginfoLocation", None) -+ cachedirs = conf.get("DebuginfoLocation", None).split(":") - - if not cachedirs: - cachedirs = ["/var/cache/abrt-di"] --- -2.7.4 - diff --git a/0026-doc-improve-documentation-of-AllowedGroups-AllowedUs.patch b/0026-doc-improve-documentation-of-AllowedGroups-AllowedUs.patch deleted file mode 100644 index ba2a519..0000000 --- a/0026-doc-improve-documentation-of-AllowedGroups-AllowedUs.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 9cfcc3a1417e8d7730312ecd4f3d16a01cffe5ef Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Fri, 29 Apr 2016 13:29:56 +0200 -Subject: [PATCH] doc: improve documentation of AllowedGroups, AllowedUsers and - IgnoredPaths - -Signed-off-by: Matej Habrnal ---- - doc/abrt-CCpp.conf.txt | 10 ++++++---- - src/hooks/CCpp.conf | 14 +++++++++++--- - 2 files changed, 17 insertions(+), 7 deletions(-) - -diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt -index b05aefc..bcefc4d 100644 ---- a/doc/abrt-CCpp.conf.txt -+++ b/doc/abrt-CCpp.conf.txt -@@ -42,18 +42,20 @@ SaveFullCore = 'yes' / 'no' ...:: - Default is 'yes'. - - IgnoredPaths = /path/to/ignore/*, */another/ignored/path* ...:: -- ABRT will ignore crashes in executables whose absolute path matches one of -- specified patterns. -+ ABRT will ignore crashes in executables whose absolute path matches -+ any of the glob patterns listed in the comma separated list. - --AllowedUsers = root, ...:: -+AllowedUsers = root, wheel, ...:: - ABRT will process only crashes of either allowed users 'AllowedUsers' or - users who are members of allowed group 'AllowedGroups'. If no allowed users - nor allowed group are specified ABRT will process crashes of all users. -+ 'AllowedUsers' is a comma separated list. - --AllowedGroups = root, ...:: -+AllowedGroups = root, wheel, ...:: - ABRT will process only crashes of either allowed users 'AllowedUsers' or - users who are members of allowed group 'AllowedGroups'. If no allowed users - nor allowed group are specified ABRT will process crashes of all users. -+ 'AllowedGroups' is a comma separated list. - - VerboseLog = NUM:: - Used to make the hook more verbose -diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf -index 2466aff..82c6b78 100644 ---- a/src/hooks/CCpp.conf -+++ b/src/hooks/CCpp.conf -@@ -58,14 +58,22 @@ SaveFullCore = yes - # - # StandaloneHook = yes - --# ABRT will ignore crashes in executables whose absolute path matches one of --# specified patterns. -+# ABRT will ignore crashes in executables whose absolute path matches -+# one of any of the glob patterns listed in the comma separated list. -+# -+# For example: -+# IgnoredPaths = /path/to/ignore/*, */another/ignored/path* - # - #IgnoredPaths = - - # ABRT will process only crashes of either allowed users or users who are - # members of allowed group. If no allowed users nor allowed group are specified --# ABRT will process crashes of all users. -+# ABRT will process crashes of all users. Both AllowedUsers and AllowedGroups -+# are a comma sepparated list. -+# -+# For example: -+# AllowedUsers = root, wheel, ... -+# AllowedGroups = root, wheel, ... - # - #AllowedUsers = - #AllowedGroups = --- -2.7.4 - diff --git a/0027-a-a-install-debuginfo-do-not-try-to-split-None.patch b/0027-a-a-install-debuginfo-do-not-try-to-split-None.patch deleted file mode 100644 index 73110ea..0000000 --- a/0027-a-a-install-debuginfo-do-not-try-to-split-None.patch +++ /dev/null @@ -1,39 +0,0 @@ -From ec20077b4a1ddc3fbd7c3d91c10712f15e312777 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Fri, 13 May 2016 13:31:35 +0200 -Subject: [PATCH] a-a-install-debuginfo: do not try to split None - -Bug introduced in commit bb653b71a9261c0b58a9256761bf034b24c2e1ad - -Related #1135 - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-action-install-debuginfo.in | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index ad7a8d3..a3ef3da 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -152,15 +152,14 @@ if __name__ == "__main__": - set_verbosity(verbose) - - if not cachedirs: -+ cachedirs = ["/var/cache/abrt-di"] - try: - conf = problem.load_plugin_conf_file("CCpp.conf") - except OSError as ex: - print(ex) - else: -- cachedirs = conf.get("DebuginfoLocation", None).split(":") -+ cachedirs = conf.get("DebuginfoLocation", cachedirs[0]).split(":") - -- if not cachedirs: -- cachedirs = ["/var/cache/abrt-di"] - if not TMPDIR: - # security people prefer temp subdirs in app's private dir, like /var/run/abrt - # and we switched to /tmp but Fedora feature tmp-on-tmpfs appeared, hence we must --- -2.7.4 - diff --git a/0028-a-dump-journal-xorg-add-_COMM-gnome-shell-to-journal.patch b/0028-a-dump-journal-xorg-add-_COMM-gnome-shell-to-journal.patch deleted file mode 100644 index 9f03d71..0000000 --- a/0028-a-dump-journal-xorg-add-_COMM-gnome-shell-to-journal.patch +++ /dev/null @@ -1,57 +0,0 @@ -From 8b0a7a0c8dd7df477c3408298aa1f7126799da65 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 17 May 2016 12:13:00 +0200 -Subject: [PATCH] a-dump-journal-xorg: add '_COMM=gnome-shell' to journal - filter - -'/usr/bin/Xwayland' crashes from gnome-shell are logged to journal with -'_COMM=gnome-shell'. - -In case ABRT cannot get executable from journal backtrace (path to binary file -containting substring "bin/X") the default one /usr/bin/X(org) is used instead. -It means if wayland crashes and /usr/bin/Xwayland is not mentioned in -backtrace, the executable is /usr/bin/X(org) even it is a wayland crash. - -Tried to figure out how to find out if it is a wayland or xorg crash with -wayland guys on irc and they said there is no easy and reasonable way how to -achieve this. - -Because the /usr/bin/Xwayland and the /usr/bin/Xorg executable are placed under -the same xorg-x11-server bugzilla component I decided no to change the default -executable. Also all wayland backtraces I've seen contained /usr/bin/Xwayland -executable so the right executable was used. - -Related to: #1336618 - -Signed-off-by: Matej Habrnal ---- - src/plugins/xorg-utils.c | 2 +- - src/plugins/xorg.conf | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/plugins/xorg-utils.c b/src/plugins/xorg-utils.c -index 8f121f8..6039acd 100644 ---- a/src/plugins/xorg-utils.c -+++ b/src/plugins/xorg-utils.c -@@ -21,7 +21,7 @@ - */ - #define IGNORE_RESULT(func_call) do { if (func_call) /* nothing */; } while (0) - --#define DEFAULT_XORG_CRASH_REASON "Xorg server crashed" -+#define DEFAULT_XORG_CRASH_REASON "Display server crashed" - - int abrt_xorg_signaled_sleep(int seconds) - { -diff --git a/src/plugins/xorg.conf b/src/plugins/xorg.conf -index 28f3ee1..8834e23 100644 ---- a/src/plugins/xorg.conf -+++ b/src/plugins/xorg.conf -@@ -4,4 +4,4 @@ - BlacklistedXorgModules = nvidia, fglrx, vboxvideo - - # List of filters which is used for searching Xorg crashes in jounral --JournalFilters = _COMM=gdm-x-session -+JournalFilters = _COMM=gdm-x-session, _COMM=gnome-shell --- -2.7.4 - diff --git a/0029-a-dump-journal-xorg-allow-libexec-X-to-be-executable.patch b/0029-a-dump-journal-xorg-allow-libexec-X-to-be-executable.patch deleted file mode 100644 index 68cadf3..0000000 --- a/0029-a-dump-journal-xorg-allow-libexec-X-to-be-executable.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 19863406cee41c1f806397173d04701b21e65478 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Fri, 20 May 2016 15:50:05 +0200 -Subject: [PATCH] a-dump-journal-xorg: allow *libexec/X* to be executable - element - -Analyzed lot of xorg backtraces extracted from journal by ABRT and figured out -almost all crashes are from '/usr/libexec/Xorg' executable but default -executable /usr/bin/X(org) is wrongly used instead. -The rest of backtaces contain the substring 'bin/X' hence the -executable is determined right. - -Allow executable element with "libexec/X" substring should limit using the -default executable wrongly. - -Signed-off-by: Matej Habrnal ---- - src/plugins/xorg-utils.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/plugins/xorg-utils.c b/src/plugins/xorg-utils.c -index 6039acd..a8dfc51 100644 ---- a/src/plugins/xorg-utils.c -+++ b/src/plugins/xorg-utils.c -@@ -224,8 +224,8 @@ struct xorg_crash_info *process_xorg_bt(char *(*get_next_line)(void *), void *da - char *filename_end = skip_non_whitespace(filename); - char sv = *filename_end; - *filename_end = '\0'; -- /* Does it look like "[/usr]/[s]bin/Xfoo"? */ -- if (strstr(filename, "bin/X")) -+ /* Does it look like "[/usr]/[s]bin/Xfoo" or [/usr]/libexec/Xfoo"? */ -+ if (strstr(filename, "bin/X") || strstr(filename, "libexec/X")) - exe = xstrdup(filename); - *filename_end = sv; - } --- -2.7.4 - diff --git a/0030-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch b/0030-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch deleted file mode 100644 index 95e0c91..0000000 --- a/0030-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 5c011b291a65f88036884bf388859e68fe7162a9 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Thu, 26 May 2016 10:15:07 +0200 -Subject: [PATCH] abrt-hook-ccpp: save get_fsuid() return values in int - variables - -int because get_fsuid() returns negative values in case of error -Revealed by coverity. - -Related to: #1337186 - -Signed-off-by: Matej Habrnal ---- - src/hooks/abrt-hook-ccpp.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c -index dfe9526..10f137b 100644 ---- a/src/hooks/abrt-hook-ccpp.c -+++ b/src/hooks/abrt-hook-ccpp.c -@@ -725,7 +725,8 @@ int main(int argc, char** argv) - char *proc_pid_status = xmalloc_xopen_read_close(path, /*maxsz:*/ NULL); - - uid_t fsuid = uid; -- uid_t tmp_fsuid = get_fsuid(proc_pid_status); -+ /* int because get_fsuid() returns negative values in case of error */ -+ int tmp_fsuid = get_fsuid(proc_pid_status); - if (tmp_fsuid < 0) - { - error_msg_ignore_crash(pid_str, NULL, (long unsigned)uid, signal_no, -@@ -742,12 +743,12 @@ int main(int argc, char** argv) - } - - int suid_policy = dump_suid_policy(); -- if (tmp_fsuid != uid) -+ if ((uid_t)tmp_fsuid != uid) - { - /* use root for suided apps unless it's explicitly set to UNSAFE */ - fsuid = 0; - if (suid_policy == DUMP_SUID_UNSAFE) -- fsuid = tmp_fsuid; -+ fsuid = (uid_t)tmp_fsuid; - else - { - g_user_core_flags = O_EXCL; --- -2.7.4 - diff --git a/0031-koops-do-not-assume-version-has-3-levels.patch b/0031-koops-do-not-assume-version-has-3-levels.patch deleted file mode 100644 index 23da172..0000000 --- a/0031-koops-do-not-assume-version-has-3-levels.patch +++ /dev/null @@ -1,65 +0,0 @@ -From f55250179f7ca74ae0a80ec0c4f6cf3bb341b5df Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 25 May 2016 13:35:28 +0200 -Subject: [PATCH] koops: do not assume version has 3 levels - -Correct commit 9023d77ad5539433146b59e5ac80e3cefcb20cf7 - -Some ancient kernel versions have 4 levels. This commit allows version -string to have any level equal or greater than 3. The first 3 levels -must be numbers and the rest can be almost anything - it just must -follow the logical structure of levels (i.e. dot something dot -something) - this should allow a git hash in the version string. - -In order to eliminate possible false positives introduced by the -flexibility of version levels the commit adds checks for -the prefixes ' ', '(' or 'kernel-' and the suffix ' #' or ') #'. - -Signed-off-by: Jakub Filak ---- - src/lib/kernel.c | 15 +++++++++++---- - 1 file changed, 11 insertions(+), 4 deletions(-) - -diff --git a/src/lib/kernel.c b/src/lib/kernel.c -index dde3d28..720dc7d 100644 ---- a/src/lib/kernel.c -+++ b/src/lib/kernel.c -@@ -571,7 +571,10 @@ char *koops_extract_version(const char *linepointer) - || strstr(linepointer, "REGS") - || strstr(linepointer, "EFLAGS") - ) { -- const char *regexp = "([0-9]+\\.[0-9]+\\.[0-9]+-[^ \\)]+)[ \\)]"; -+ /* "(4.7.0-2.x86_64.fc25) #" */ -+ /* " 4.7.0-2.x86_64.fc25 #" */ -+ /* " 2.6.3.4.5-2.x86_64.fc22 #" */ -+ const char *regexp = "([ \\(]|kernel-)([0-9]+\\.[0-9]+\\.[0-9]+(\\.[^.-]+)*-[^ \\)]+)\\)? #"; - regex_t re; - int r = regcomp(&re, regexp, REG_EXTENDED); - if (r != 0) -@@ -582,8 +585,8 @@ char *koops_extract_version(const char *linepointer) - return NULL; - } - -- regmatch_t matchptr[2]; -- r = regexec(&re, linepointer, 2, matchptr, 0); -+ regmatch_t matchptr[3]; -+ r = regexec(&re, linepointer, sizeof(matchptr)/sizeof(matchptr[0]), matchptr, 0); - if (r != 0) - { - if (r != REG_NOMATCH) -@@ -602,7 +605,11 @@ char *koops_extract_version(const char *linepointer) - return NULL; - } - -- char *ret = xstrndup(linepointer + matchptr[1].rm_so, matchptr[1].rm_eo - matchptr[1].rm_so); -+ /* 0: entire string */ -+ /* 1: version prefix */ -+ /* 2: version string */ -+ const regmatch_t *const ver = matchptr + 2; -+ char *ret = xstrndup(linepointer + ver->rm_so, ver->rm_eo - ver->rm_so); - - regfree(&re); - return ret; --- -2.7.4 - diff --git a/0032-a-a-install-debuginfo-Exception-may-not-have-an-argu.patch b/0032-a-a-install-debuginfo-Exception-may-not-have-an-argu.patch deleted file mode 100644 index d003afd..0000000 --- a/0032-a-a-install-debuginfo-Exception-may-not-have-an-argu.patch +++ /dev/null @@ -1,39 +0,0 @@ -From a2bdf944c8855dd53b4df5f6829442f9f2f6bd14 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 8 Jun 2016 17:50:18 +0200 -Subject: [PATCH] a-a-install-debuginfo: Exception may not have an argument - errno - -Also BrokenPipe error can appear even in download_class(), moving it to try -block. - -Related to #1343826, #1343664 - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-install-debuginfo.in | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index a3ef3da..be45bc6 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -236,12 +236,12 @@ if __name__ == "__main__": - sys.exit(RETURN_FAILURE) - - # TODO: should we pass keep_rpms=keeprpms to DebugInfoDownload here?? -- downloader = download_class(cache=cachedirs[0], tmp=TMPDIR, -+ try: -+ downloader = download_class(cache=cachedirs[0], tmp=TMPDIR, - noninteractive=noninteractive, - repo_pattern=repo_pattern) -- try: - result = downloader.download(missing, download_exact_files=exact_fls) -- except Exception as ex: -+ except OSError as ex: - if ex.errno == errno.EPIPE: - clean_up(TMPDIR, silent=True) - exit(RETURN_FAILURE) --- -2.7.4 - diff --git a/0033-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch b/0033-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch deleted file mode 100644 index 864fcbc..0000000 --- a/0033-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch +++ /dev/null @@ -1,91 +0,0 @@ -From 57c975dfda165098502cdb9e2525bc7877301a12 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 13 Jun 2016 09:43:21 +0200 -Subject: [PATCH] vmcore: fix finding partitions by UUID and LABEL - -In kdump.conf fs partition can be specified by UUID or LABEL but mtab -uses only file system node path. Hence, we need to translate the ID to -its node path. - -Related: rhbz#1147053 - -Signed-off-by: Jakub Filak ---- - configure.ac | 2 ++ - src/hooks/Makefile.am | 1 + - src/hooks/abrt_harvest_vmcore.py.in | 27 +++++++++++++++++++++++++++ - 3 files changed, 30 insertions(+) - -diff --git a/configure.ac b/configure.ac -index 98e2564..8e13524 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -263,6 +263,8 @@ AC_ARG_ENABLE(doxygen-docs, - [enable_doxygen_docs=no] - ) - -+AC_PATH_PROG([BLKID], [BLKID], [/usr/sbin/blkid], [$PATH:/usr/sbin:/sbin]) -+ - # Doxygen Documentation - - AC_PATH_PROG(DOXYGEN, doxygen, no) -diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am -index bf68994..c0255d9 100644 ---- a/src/hooks/Makefile.am -+++ b/src/hooks/Makefile.am -@@ -119,6 +119,7 @@ abrt-install-ccpp-hook: abrt-install-ccpp-hook.in - abrt-harvest-vmcore: abrt_harvest_vmcore.py.in - sed -e s,\@CONF_DIR\@,\$(CONF_DIR)\,g \ - -e s,\@DEFAULT_DUMP_LOCATION\@,$(DEFAULT_DUMP_LOCATION),g \ -+ -e s,\@BLKID\@,$(BLKID),g \ - $< >$@ - - abrt-harvest-pstoreoops: abrt-harvest-pstoreoops.in -diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in -index 61a6e57..ab976dc 100644 ---- a/src/hooks/abrt_harvest_vmcore.py.in -+++ b/src/hooks/abrt_harvest_vmcore.py.in -@@ -13,6 +13,7 @@ import shutil - import time - import hashlib - import augeas -+from subprocess import Popen, PIPE - - import problem - import report -@@ -38,6 +39,32 @@ def get_mount_point(part_id): - part_id - device node, label or uuid - """ - -+ idtypes = {"UUID=":"-U", "PARTUUID=":"-U", "LABEL=":"-L", "PARTLABEL=":"-L"} -+ -+ for typ, switch in idtypes.items(): -+ if not part_id.startswith(typ): -+ continue -+ -+ idf = part_id[len(typ):] -+ try: -+ proc = Popen(["@BLKID@", switch, idf], stdout=PIPE, stderr=PIPE) -+ out, err = proc.communicate() -+ if err: -+ sys.stderr.write("Failed 'blkid {0} {1}': {2}\n" -+ .format(switch, idf, err)) -+ sys.exit(1) -+ if not out: -+ sys.stderr.write("No results from 'blkid {0} {1}'\n" -+ .format(switch, idf)) -+ sys.exit(1) -+ -+ part_id = out.decode().strip() -+ break -+ except OSError as ex: -+ sys.stderr.write("Cannot run 'blkid {0} {1}': {2}\n" -+ .format(switch, idf, str(ex))) -+ sys.exit(1) -+ - # look up the identifier in /etc/mtab - result = get_augeas("Fstab", "/etc/mtab").get("/files/etc/mtab/*" - "[spec=\"" + part_id + "\"]/file") --- -2.7.4 - diff --git a/0035-vmcore-use-findmnt-to-get-mountpoint.patch b/0035-vmcore-use-findmnt-to-get-mountpoint.patch deleted file mode 100644 index 19b300f..0000000 --- a/0035-vmcore-use-findmnt-to-get-mountpoint.patch +++ /dev/null @@ -1,130 +0,0 @@ -From 0fcf4fdd56970ca333f36d7fcfda2d6ecb14c8f2 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 16 Jun 2016 14:21:28 +0200 -Subject: [PATCH] vmcore: use findmnt to get mountpoint - -findmnt solves both problems: -* UUID=/LABEL= -* different device links - -Related: rhbz#1147053 - -Signed-off-by: Jakub Filak ---- - configure.ac | 2 +- - src/hooks/Makefile.am | 2 +- - src/hooks/abrt_harvest_vmcore.py.in | 59 ++++++++++++++----------------------- - 3 files changed, 24 insertions(+), 39 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 8e13524..98fbebc 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -263,7 +263,7 @@ AC_ARG_ENABLE(doxygen-docs, - [enable_doxygen_docs=no] - ) - --AC_PATH_PROG([BLKID], [BLKID], [/usr/sbin/blkid], [$PATH:/usr/sbin:/sbin]) -+AC_PATH_PROG([FINDMNT], [findmnt], [/usr/bin/findmnt], [$PATH:/usr/sbin:/sbin]) - - # Doxygen Documentation - -diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am -index c0255d9..8e73bdc 100644 ---- a/src/hooks/Makefile.am -+++ b/src/hooks/Makefile.am -@@ -119,7 +119,7 @@ abrt-install-ccpp-hook: abrt-install-ccpp-hook.in - abrt-harvest-vmcore: abrt_harvest_vmcore.py.in - sed -e s,\@CONF_DIR\@,\$(CONF_DIR)\,g \ - -e s,\@DEFAULT_DUMP_LOCATION\@,$(DEFAULT_DUMP_LOCATION),g \ -- -e s,\@BLKID\@,$(BLKID),g \ -+ -e s,\@FINDMNT\@,$(FINDMNT),g \ - $< >$@ - - abrt-harvest-pstoreoops: abrt-harvest-pstoreoops.in -diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in -index ab976dc..1cceea7 100644 ---- a/src/hooks/abrt_harvest_vmcore.py.in -+++ b/src/hooks/abrt_harvest_vmcore.py.in -@@ -19,6 +19,12 @@ import problem - import report - - -+def errx(message, code=1): -+ sys.stderr.write(message) -+ sys.stderr.write("\n") -+ sys.stderr.flush() -+ sys.exit(code) -+ - def get_augeas(module, file_path): - """ - A function for efficient configuration of Augeas. -@@ -33,49 +39,28 @@ def get_augeas(module, file_path): - - def get_mount_point(part_id): - """ -- A function used to look up a mount point in mtab using -- the provided identifier. -+ A function used to look up a mount point of the provided identifier -+ using 'findmnt' system utility. - - part_id - device node, label or uuid - """ - -- idtypes = {"UUID=":"-U", "PARTUUID=":"-U", "LABEL=":"-L", "PARTLABEL=":"-L"} -- -- for typ, switch in idtypes.items(): -- if not part_id.startswith(typ): -- continue -- -- idf = part_id[len(typ):] -- try: -- proc = Popen(["@BLKID@", switch, idf], stdout=PIPE, stderr=PIPE) -- out, err = proc.communicate() -- if err: -- sys.stderr.write("Failed 'blkid {0} {1}': {2}\n" -- .format(switch, idf, err)) -- sys.exit(1) -- if not out: -- sys.stderr.write("No results from 'blkid {0} {1}'\n" -- .format(switch, idf)) -- sys.exit(1) -- -- part_id = out.decode().strip() -- break -- except OSError as ex: -- sys.stderr.write("Cannot run 'blkid {0} {1}': {2}\n" -- .format(switch, idf, str(ex))) -- sys.exit(1) -+ try: -+ proc = Popen(["@FINDMNT@", "--noheadings", "--first-only", "--raw", -+ "--evaluate", "--output", "TARGET", part_id], -+ stdout=PIPE, stderr=PIPE) -+ out, err = proc.communicate() -+ if err: -+ errx("Error finding mountpoint of '{0}': {1}" -+ .format(devpath, err.decode())) -+ -+ result = out.decode().strip() -+ if proc.returncode != 0 or not result: -+ errx("Cannot find mountpoint of '{0}'".format(part_id)) - -- # look up the identifier in /etc/mtab -- result = get_augeas("Fstab", "/etc/mtab").get("/files/etc/mtab/*" -- "[spec=\"" + part_id + "\"]/file") -- if result: - return result -- else: -- # identifier not in the table -- sys.stderr.write("Error: Cannot access partition '" + part_id + -- "', mount point not found in /etc/mtab!\n") -- sys.exit(1) -- -+ except OSError as ex: -+ errx("Cannot run 'findmnt': {1}".format(str(ex))) - - def parse_kdump(): - """ --- -2.7.4 - diff --git a/0036-abrt-hook-ccpp-Fix-mismatching-argument.patch b/0036-abrt-hook-ccpp-Fix-mismatching-argument.patch deleted file mode 100644 index ca072bd..0000000 --- a/0036-abrt-hook-ccpp-Fix-mismatching-argument.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 5122aef69fb303022609dc6ca53a11e30842ad6e Mon Sep 17 00:00:00 2001 -From: Wes Lindauer -Date: Wed, 13 Jul 2016 16:20:51 -0400 -Subject: [PATCH] abrt-hook-ccpp: Fix mismatching argument - -The calling code in abrt-install-ccpp-hook was passing in --test-config. -This was only working due to the misuse of strcmp, so it was accepting -any string other than --config-test. ---- - src/hooks/abrt-hook-ccpp.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c -index 10f137b..9e82ff9 100644 ---- a/src/hooks/abrt-hook-ccpp.c -+++ b/src/hooks/abrt-hook-ccpp.c -@@ -656,7 +656,7 @@ int main(int argc, char** argv) - free_map_string(settings); - } - -- if (argc == 2 && strcmp(argv[1], "--config-test")) -+ if (argc == 2 && !strcmp(argv[1], "--test-config")) - return test_configuration(setting_SaveFullCore, setting_CreateCoreBacktrace); - - if (argc < 8) --- -2.7.4 - diff --git a/0037-Translation-updates.patch b/0037-Translation-updates.patch deleted file mode 100644 index 15eec3c..0000000 --- a/0037-Translation-updates.patch +++ /dev/null @@ -1,29384 +0,0 @@ -From 4199412750f96933eb80df0da0fc3ed24344c444 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 14 Jul 2016 11:26:10 +0200 -Subject: [PATCH] Translation updates - -Signed-off-by: Jakub Filak ---- - po/ar.po | 100 +++--- - po/as.po | 87 ++--- - po/ast.po | 87 ++--- - po/bg.po | 87 ++--- - po/bn.po | 87 ++--- - po/bn_IN.po | 87 ++--- - po/bs.po | 87 ++--- - po/ca.po | 398 +++++++++++----------- - po/cs.po | 295 ++++++++-------- - po/da.po | 87 ++--- - po/de.po | 317 ++++++++++-------- - po/el.po | 87 ++--- - po/en_GB.po | 87 ++--- - po/es.po | 276 +++++++-------- - po/et.po | 87 ++--- - po/eu.po | 87 ++--- - po/fa.po | 87 ++--- - po/fi.po | 87 ++--- - po/fr.po | 361 +++++++++++--------- - po/gl.po | 87 ++--- - po/gu.po | 87 ++--- - po/he.po | 87 ++--- - po/hi.po | 96 +++--- - po/hu.po | 598 +++++++++++++++++---------------- - po/ia.po | 87 ++--- - po/id.po | 143 ++++---- - po/it.po | 87 ++--- - po/ja.po | 153 +++++---- - po/ka.po | 87 ++--- - po/km.po | 140 ++++---- - po/kn.po | 87 ++--- - po/ko.po | 111 +++--- - po/lt.po | 87 ++--- - po/lv.po | 87 ++--- - po/ml.po | 93 +++--- - po/mr.po | 96 +++--- - po/nb.po | 87 ++--- - po/nds.po | 87 ++--- - po/nl.po | 279 ++++++++-------- - po/or.po | 87 ++--- - po/pa.po | 87 ++--- - po/pl.po | 276 +++++++++------ - po/pt.po | 87 ++--- - po/pt_BR.po | 384 +++++++++++++-------- - po/ru.po | 398 +++++++++++----------- - po/sk.po | 87 ++--- - po/sq.po | 1021 ++++++++++++++++++++++++++++++++++---------------------- - po/sr.po | 137 ++++---- - po/sr@latin.po | 87 ++--- - po/sv.po | 276 +++++++-------- - po/ta.po | 87 ++--- - po/te.po | 87 ++--- - po/tg.po | 87 ++--- - po/th.po | 87 ++--- - po/tr.po | 87 ++--- - po/uk.po | 278 ++++++++------- - po/ur.po | 87 ++--- - po/vi.po | 87 ++--- - po/zh_CN.po | 396 ++++++++++++---------- - po/zh_TW.po | 149 ++++----- - 60 files changed, 5314 insertions(+), 4589 deletions(-) - -diff --git a/po/ar.po b/po/ar.po -index 650d734..fddc66c 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -4,41 +4,42 @@ - # - # Translators: - # Jiří Moskovčák , 2011 --# Khalid Moharrum , 2015. #zanata -+# Abdelrahman Manna , 2016. #zanata -+# Khalid Moharrum , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-11-03 07:57-0500\n" -+"PO-Revision-Date: 2016-04-10 05:43-0400\n" - "Last-Translator: Khalid Moharrum \n" - "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ar/)\n" - "Language: ar\n" - "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " - "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "التبليغ عن مشكلة" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "العرض والتبليغ عن أخطاء التطبيق" - - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "لا يمكن الحصول على ملكية '%s'" - - #: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "" -+msgstr "لا يمكن فتح الملف للكتابة '%s'" - - #: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format -@@ -260,15 +261,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -279,43 +280,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -844,7 +845,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -867,7 +868,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -875,32 +879,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1153,7 +1157,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1194,28 +1198,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1229,59 +1233,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1347,7 +1351,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/as.po b/po/as.po -index ce31175..f1f83ab 100644 ---- a/po/as.po -+++ b/po/as.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "language/as/)\n" - "Language: as\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -283,15 +283,15 @@ msgstr "বিষয়ে" - msgid "Quit" - msgstr "প্ৰস্থান কৰক" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -302,43 +302,43 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যা ডাইৰেকটৰি" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "সংৰূপ নথিপত্ৰ" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog -লে লগ কৰক" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ কৰক" - -@@ -939,7 +939,7 @@ msgstr "ত্ৰুটি: GDB এ কোনো তথ্য ঘুৰাই - msgid "Error: %s" - msgstr "ত্ৰুটি: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ব্যৱহাৰকাৰী কমান্ডত প্ৰস্থান কৰা হৈ আছে" - -@@ -962,7 +962,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -970,34 +973,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} খোলিব নোৱাৰি: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "কেন্দ্ৰডাম্পে {0} debuginfo নথিপত্ৰসমূহ প্ৰসংগ কৰে, সিহতৰ মাজৰ {1} ইনস্টল " - "নাই" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "debuginfo ফাইলসমূহৰ {0} ইনস্টল নহয়" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "অনুৰোধ কৰা ফাইল সন্ধানহিন: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "সন্ধানহিন debuginfo নথিপত্ৰ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "সকলো debuginfo ফাইল উপলব্ধ" - -@@ -1274,7 +1277,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR ত নতুন সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1317,28 +1320,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1352,59 +1355,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1470,7 +1473,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/ast.po b/po/ast.po -index 1b75f51..35df189 100644 ---- a/po/ast.po -+++ b/po/ast.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/ast/)\n" - "Language: ast\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -258,15 +258,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -277,43 +277,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -842,7 +842,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -865,7 +865,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -873,32 +876,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1151,7 +1154,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1192,28 +1195,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1227,59 +1230,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1345,7 +1348,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/bg.po b/po/bg.po -index 5205c5c..0139bac 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: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/bg/)\n" - "Language: bg\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -261,15 +261,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -280,43 +280,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Директория с проблема" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Конфигурационен файл" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [опции]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Запис в системния журнал" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Добавяй имената на програмите в записа" - -@@ -860,7 +860,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Изход по команда от потребителя" - -@@ -883,7 +883,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -891,33 +894,33 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Не мога да отворя {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump препраща към {0} debuginfo файла, {1} от тях не са инсталирани" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Липсващ debuginfo файл: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Всички debuginfo файлове са на разположение" - -@@ -1178,7 +1181,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1219,28 +1222,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1254,59 +1257,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1372,7 +1375,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/bn.po b/po/bn.po -index d50e4aa..7f49193 100644 ---- a/po/bn.po -+++ b/po/bn.po -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -25,7 +25,7 @@ msgstr "" - "language/bn/)\n" - "Language: bn\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -269,15 +269,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -288,43 +288,43 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যাযুক্ত ডিরেক্টরি" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" - -@@ -867,7 +867,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ব্যবহারকারী দ্বারা উল্লিখিত কমান্ডের ফলে প্রস্থান করা হচ্ছে" - -@@ -890,7 +890,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -898,34 +901,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} খুলতে ব্যর্থ: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump দ্বারা {0} debuginfo ফাইলগুলি অনুধাবন করা হয়, এর মধ্যে {1}-টি " - "ইনস্টল করা হয়নি" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo ফাইল অনুপস্থিত: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "সকল debuginfo ফাইল উপলব্ধ" - -@@ -1183,7 +1186,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1226,28 +1229,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1261,59 +1264,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1379,7 +1382,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/bn_IN.po b/po/bn_IN.po -index 5f6d6df..a1744ae 100644 ---- a/po/bn_IN.po -+++ b/po/bn_IN.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -26,7 +26,7 @@ msgstr "" - "abrt/language/bn_IN/)\n" - "Language: bn-IN\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -298,15 +298,15 @@ msgstr "সম্বন্ধে" - msgid "Quit" - msgstr "প্রস্থান করুন" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -317,43 +317,43 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যাযুক্ত ডিরেক্টরি" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" - -@@ -972,7 +972,7 @@ msgstr "ত্রুটি: GDB কোনো ডেটা ফেরত পাঠ - msgid "Error: %s" - msgstr "ত্রুটি: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ব্যবহারকারী দ্বারা উল্লিখিত কমান্ডের ফলে প্রস্থান করা হচ্ছে" - -@@ -995,7 +995,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1003,34 +1006,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} খুলতে ব্যর্থ: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump দ্বারা {0} debuginfo ফাইলগুলি অনুধাবন করা হয়, এর মধ্যে {1}-টি " - "ইনস্টল করা হয়নি" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo ফাইল ইনস্টল করা হয়নি" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "অনুরোধ জানানো ফাইল অনুপস্থিত: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo ফাইল অনুপস্থিত: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "সকল debuginfo ফাইল উপলব্ধ" - -@@ -1310,7 +1313,7 @@ msgstr "" - "প্রত্যেক খুঁজে পাওয়া oops এর জন্য DIR এ একটি নতুন সমস্যা ডিরেক্টরি তৈরি করুন" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1354,28 +1357,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1389,59 +1392,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1507,7 +1510,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/bs.po b/po/bs.po -index 6974aea..a5f72af 100644 ---- a/po/bs.po -+++ b/po/bs.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "Language: bs\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -260,15 +260,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -279,43 +279,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfiguracijska datoteka" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Zapiši u syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Dodaj nazive programa u zapis" - -@@ -844,7 +844,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Izlazim na korisničku naredbu" - -@@ -867,7 +867,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -875,32 +878,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1153,7 +1156,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1194,28 +1197,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1229,59 +1232,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1347,7 +1350,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/ca.po b/po/ca.po -index 7b320e5..39bd875 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -13,16 +13,16 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2016-01-25 06:37-0500\n" -+"PO-Revision-Date: 2016-03-10 04:05-0500\n" - "Last-Translator: Robert Antoni Buj Gelonch \n" - "Language-Team: Catalan \n" - "Language: ca\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -149,8 +149,7 @@ msgid "" - msgstr "" - "& [-v] [DIR]...\n" - "\n" --"Miniaplicació que notifica a l'usuari d'un nou problema detectat per " --"l'ABRT\n" -+"Miniaplicació que notifica a l'usuari d'un nou problema detectat amb ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" -@@ -158,10 +157,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"L'opció de configuració anterior s'ha traslladat a GSettings i l'interruptor " -+"està vinculat al valor de l'ajust «report-technical-problems» de l'esquema " -+"«org.gnome.desktop.privacy»." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "La següent opció de configuració es pot configurar a" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -188,6 +190,13 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"El fitxer del bolc de la memòria és necessari per generar la traça de la " -+"pila, que és una operació que consumeix temps i espai. ABRT proporciona un " -+"servei que genera la traça de la pila des del bolc de la memòria, però heu " -+"de pujar el bolc de la memòria a aquest servei. Amb l'opció «Sempre», ABRT " -+"pujarà sempre el bolc de la memòria sense preguntar. Amb l'opció «Mai», la " -+"traça de la pila es generarà sempre de forma local. Amb l'opció «Pregunta», " -+"ABRT sempre ho preguntarà a l'usuari." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -196,10 +205,10 @@ msgid "" - "directory. With this option disabled ABRT will move the problem directory " - "without asking." - msgstr "" --"L'ABRT emmagatzema les dades del problema en directoris. Sempre que l'ABRT " -+"ABRT emmagatzema les dades del problema en directoris. Sempre que ABRT " - "necessiti un directori on s'hi hagi d'escriure, el directori és mogut des de " - "la localització del sistema al vostre directori d'inici. Amb aquesta opció " --"inhabilitada l'ABRT mourà el directori del problema sense preguntar." -+"inhabilitada ABRT mourà el directori del problema sense preguntar." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -208,7 +217,7 @@ msgid "" - "uReport is sent at beginning of reporting process. With this option enabled " - "uReports are sent automatically immediately after problem detection." - msgstr "" --"L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " -+"uReport és la descripció breu i completament anònima d'un problema. ABRT " - "utilitza els uReport per a la ràpida detecció global de duplicats. En la " - "configuració per defecte l'uReport és enviat al començament del procés " - "informador. Amb aquesta opció habilitada els uReports són enviats " -@@ -230,7 +239,7 @@ msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" --"Amb aquesta opció habilitada l'ABRT mai mostra les notificacions dels " -+"Amb aquesta opció habilitada, ABRT mai mostra les notificacions dels " - "problemes informats. Únicament pren efecte si està habilitada la presentació " - "d'informes reduïts." - -@@ -239,7 +248,7 @@ msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" --"Amb aquesta opció habilitada l'ABRT sempre crea el tiquet de l'error amb " -+"Amb aquesta opció habilitada, ABRT sempre crea el tiquet de l'error amb " - "accés restringit si es detecten possibles dades sensibles." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:11 -@@ -258,23 +267,23 @@ msgid "" - msgstr "" - "Els problemes incomplets es detecten mentre l'ordinador s'està aturant o " - "s'està tancant la sessió d'un usuari. A fi de proporcionar informes de " --"problemes valuosos, l'ABRT no us permetrà enviar aquests problemes." -+"problemes valuosos, ABRT no us permetrà enviar aquests problemes." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Sempre" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Mai" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Pregunta" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Puja el bolc de la memòria per a la generació de la traça inversa" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -291,7 +300,7 @@ msgstr "Configuració de la presentació d'informes dels problemes" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "Sobre la configuració del sistema de l'ABRT" -+msgstr "Sobre la configuració del sistema d'ABRT" - - #: ../src/configuration-gui/main.c:105 - msgid "About" -@@ -301,7 +310,7 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Surt" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -312,8 +321,8 @@ msgstr "" - "Consulta a la base de dades dels paquets i desa el nom del paquet i del " - "component" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -324,15 +333,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Directori del problema" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Fitxer de configuració" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Utilitza aquest directori com a l'arrel dels RPM" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -340,29 +349,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Desa les metadades del contenidor" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "El directori arrel per a l'execució de les ordres del contenidor" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcions]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Utilitza el NÚM com a uid de client" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Enregistra a syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Afegeix els noms dels programes al registre" - -@@ -388,7 +397,7 @@ msgstr "No autoritzat" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "No es pot obrir el problema" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -444,7 +453,7 @@ msgid "" - msgstr "" - "Les dades del problema estan incompletes. Això normalment passa quan es " - "detecta un problema mentre l'ordinador s'està apagant o l'usuari està " --"sortint del sistema. Per obtenir informes de problema valuosos, l'ABRT no " -+"sortint del sistema. Per obtenir informes de problema valuosos, ABRT no " - "permet que envieu aquest problema. Si teniu temps i voleu ajudar als " - "desenvolupadors en la seva tasca de posar en ordre aquest problema, " - "contacteu-hi directament." -@@ -459,7 +468,7 @@ msgstr "Enregistra a syslog inclús amb -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event ESDEVENIMENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -471,7 +480,7 @@ msgstr "Comuniqueu-vos directament amb l'usuari" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Incrementa el valor nice amb l'INCREMENT" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -494,12 +503,12 @@ msgstr "" - "& [-vs] [-w NÚM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" - "\n" - "\n" --"Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada al " -+"Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada a " - "DumpLocation\n" --"indicat en l'abrt.conf\n" -+"indicat a abrt.conf\n" - "\n" - "Si no es proporciona el DIRECTORI_DE_PUJADA, s'utilitza el valor de\n" --"l'opció WatchCrashdumpArchiveDir de l'abrt.conf" -+"l'opció WatchCrashdumpArchiveDir des d'abrt.conf" - - #: ../src/daemon/abrt-upload-watch.c:281 - msgid "Daemize" -@@ -534,7 +543,7 @@ msgstr "" - - #: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "Els camins als certificats SSL de l'uReport o el tipus de certificat" -+msgstr "Els camins als certificats SSL d'uReport o el tipus de certificat" - - #: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" -@@ -689,26 +698,26 @@ msgstr "Error en eliminar el directori del problema: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Ha fallat la crida al mètode GetInfo de D-Bus: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "No es poden obtenir les dades del problema des d'abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" -+msgstr "No es pot obtenir el llistat de problemes des d'abrt-dbus: %s" - - #: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 - #, c-format - msgid "Can't get problem data from abrt-dbus: %s" --msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" -+msgstr "No es poden obtenir les dades del problema des d'abrt-dbus: %s" - - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "No es pot provar si l'element existeix sobre l'abrt-dbus: %s" -+msgstr "No es pot provar si l'element existeix sobre abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -721,7 +730,7 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"No es pot escriure en «%s». El problema «%s» no es traurà dels problemes " -+"No es pot escriure en «%s». El problema «%s» no s'eliminarà dels problemes " - "ignorats «%s»" - - #. Something nefarious happened -@@ -807,8 +816,8 @@ msgid "" - msgstr "" - "La traça inversa no conté suficients marcs significatius de funcions per a " - "ser informada. És molest, però no fa que sigui necessari senyalar-ho com un " --"problema amb el vostre ordinador. L'ABRT no us permetrà crear un informe en " --"el sistema de seguiment d'errors, però podeu posar-vos en contacte amb " -+"problema amb el vostre ordinador. ABRT no us permetrà crear un informe en el " -+"sistema de seguiment d'errors, però podeu posar-vos en contacte amb " - "mantenidors del nucli del sistema operatiu a través d'un correu electrònic." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 -@@ -873,35 +882,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "no es pot obrir el directori del problema'{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Error de directori del problema: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Mitjançant el producte '{0}' des de /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Mitjançant el producte {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Mitjançant la versió del producte {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Es va trobar duplicat l'error de programari de bugzilla '#{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "No hi ha cap error de programari de bugzilla amb 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Advertència: abrt-bodhi no admet la versió de producte 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -959,7 +968,7 @@ msgstr "Error: GDB no va retornar cap dada" - msgid "Error: %s" - msgstr "Error: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Sortint amb l'ordre de l'usuari" - -@@ -982,69 +991,47 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Ús: %s [-vy] [--ids=FITXER_IDS_CONSTRUCCIÓ] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=DIRECTORI_TEMPORAL] [--cache=DIRECTORI_CAU[:DEBUGINFODIR1:" --"DEBUGINFODIR2...]] [--size_mb=MIDA]\n" --" [-e, --exact=CAMÍ[:CAMÍ]...]\n" --"\n" --"Instal·la els debuginfo per a tots els build-ids llistats en " --"FITXER_IDS_CONSTRUCCIÓ\n" --"al DIRECTORI_CAU, mitjançant el DIRECTORI_TEMPORAL com a zona de " --"concentració temporal.\n" --"Els fitxers antics en DIRECTORI_CAU són eliminats fins que sigui més petits " --"que la MIDA.\n" --"\n" --"Es llegeix la configuració de /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Mostra informació detallada\n" --" -y No interactiu, s'assumeix 'Sí' a totes les preguntes\n" --" --ids Per defecte: build_ids\n" --" --tmpdir Per defecte: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Per defecte: /var/cache/abrt-di\n" --" --size_mb Per defecte: 4096\n" --" --pkgmgr Per defecte: PackageManager des de CCpp.conf o 'dnf'\n" --" -e,--exact Baixa tan sols els paquets especificats\n" --" --repo Patró a utilitzar quan se cerquen dipòsits.\n" --" Per defecte: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "No es pot obrir {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "El bolc de la memòria fa referència a {0} fitxers debuginfo, {1} dels quals " - "no estan instal·lats" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} dels fitxers debuginfo no estan instal·lats" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "configuració no vàlida del complement CCpp, el gestor de paquets no està " - "suportat: «%s»" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Falta el fitxer sol·licitat: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Falta el fitxer debuginfo: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Tots els fitxers debuginfo estan disponibles" - -@@ -1056,26 +1043,33 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e CAMÍ[:CAMÍ]...]\n" -+"\t[-r DIPÒSIT]\n" -+"\n" -+"Instal·la els paquets debuginfo per a tots els build-ids llistats al " -+"BUILD_IDS_FILE\n" -+"a la memòria cau del sistema d'ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Sense interacció, respon «Sí» a totes les preguntes" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- means STDIN, per defecte: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Baixa únicament els fitxers especificats" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" - msgstr "" -+"El patró a utilitzar quan se cerqui als dipòsits, per defecte: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Opció ignorada" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1320,7 +1314,7 @@ msgstr "" - "Crea el nou directori del problema en DIR per a cadascun dels oops trobats" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1355,36 +1349,36 @@ msgstr "Error en compilar l'expressió regular" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "No es pot actualitzar el problema: no s'ha trobat cap oops" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "S'ha trobat altres oops: processa únicament el primer" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Ha fallat l'obtenció de tota la informació sol·licitada del journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "No desis la repetició de les panes %ds (el límit és %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" --" les dades del problema detectat no s'han pogut desar en la base de dades de " --"l'abrt" -+" les dades del problema detectat no s'han pogut desar en la base de dades " -+"d'abrt" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Error en inicialitzar l'observació de systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1410,63 +1404,63 @@ msgstr "" - "\n" - "L'última posició vista es desa en" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - "Crea un nou directori del problema al DIR per a cadascun dels bolcs de la " - "memòria" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Inicia la lectura de systemd-journal des de la posició del CURSOR" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Inicia la lectura de systemd-journal des del final" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Regula la creació del directori del problema a 1 per INT segons" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "El mateix que -t INT, INT s'especifica en plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Segueix systemd-journal des de la darrera posició vista (si n'hi hagués)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Heu d'especificar -c CURSOR o bé -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "No es pot obrir systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" --"No es pot filtrar systemd-journal a únicament les dades systemd-coredump" -+"No es pot filtrar systemd-journal a únicament dades de systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "No es pot buscar fins al final de la publicació" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1523,7 +1517,7 @@ msgstr "No es pot inicialitzar systemd-journal al directori «%s»" - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" --"No es pot filtrar systemd-journal únicament a dades del nucli del sistema " -+"No es pot filtrar systemd-journal a únicament dades del nucli del sistema " - "operatiu" - - #: ../src/plugins/abrt-dump-journal-oops.c:300 -@@ -1534,7 +1528,7 @@ msgstr "Error en iniciar l'observació des del cursor «%s»" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Ha fallat l'anàlisi de la traça inversa des de journal" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1546,7 +1540,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1557,25 +1551,31 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Imprimeix les panes que s'han trobat en la sortida estàndard" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Crea el nou directori del problema al DIR per a cadascuna de les panes " -+"trobades" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Filtre de la publicació p.ex. '_COMM=gdm-x-session' (es pot indicar diverses " -+"vegades)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"El filtre de la publicació s'ha d'indicar amb el paràmetre -j o ha d'estar " -+"emmagatzemat al fitxer /etc/abrt/plugins/xorg.conf" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "No es pot filtrar systemd-journal a únicament dades de Xorg" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1599,7 +1599,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Ha fallat l'anàlisi de la traça inversa des del fitxer de registre" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -1665,8 +1665,8 @@ msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." - msgstr "" --"No es pot utilitzar el servidor de resseguiment, a causa que la mida del " --"fitxer de la pana és massa gran. Proveu amb un resseguiment local." -+"No es pot utilitzar el servidor de retraçat, a causa que la mida del fitxer " -+"de la pana és massa gran. Proveu amb un retraçament local." - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -@@ -1721,7 +1721,7 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" --"El servidor de resseguiment no és capaç de processar el paquet «%s.%s».\n" -+"El servidor de retraçat no és capaç de processar el paquet «%s.%s».\n" - "Forma part dels dipòsits oficials de «%s»?" - - #: ../src/plugins/abrt-retrace-client.c:444 -@@ -1742,7 +1742,7 @@ msgstr "El servidor ha rebutjat la vostra sol·licitud." - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" - "«%s» ha de ser un fitxer normal per a poder utilitzar un servidor de " --"resseguiment." -+"retraçat." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1750,8 +1750,8 @@ msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." - msgstr "" --"La mida de la vostra pana és de %s, però el servidor de resseguiment " --"únicament accepta panes més petites o iguals de %s." -+"La mida de la vostra pana és de %s, però el servidor de retraçat únicament " -+"accepta panes més petites o iguals de %s." - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." -@@ -1760,7 +1760,7 @@ msgstr "El servidor no és compatible amb els arxius tar comprimits amb xz." - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "El llançament «%s» no està suportat pel servidor de resseguiment." -+msgstr "El llançament «%s» no està suportat pel servidor de retraçat." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." -@@ -1768,7 +1768,7 @@ msgstr "El servidor no és capaç de tractar la vostra petició." - - #: ../src/plugins/abrt-retrace-client.c:600 - msgid "Unknown package sent to Retrace server." --msgstr "Es va enviar un paquet desconegut al servidor de resseguiment." -+msgstr "Es va enviar un paquet desconegut al servidor de retraçat." - - #: ../src/plugins/abrt-retrace-client.c:609 - msgid "Preparing an archive to upload" -@@ -1780,8 +1780,8 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" --"La mida del vostre arxiu és de %s, però el servidor de resseguiment " --"únicament accepta arxius més petits o iguals a %s." -+"La mida del vostre arxiu és de %s, però el servidor de retraçat únicament " -+"accepta arxius més petits o iguals a %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format -@@ -1821,7 +1821,7 @@ msgid "" - "server." - msgstr "" - "El vostre directori del problema està corromput i no pot ser processat pel " --"servidor de resseguiment." -+"servidor de retraçat." - - #: ../src/plugins/abrt-retrace-client.c:769 - msgid "" -@@ -1841,7 +1841,7 @@ msgstr "La resposta del servidor no és vàlida: falta X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" --msgstr "S'ha iniciat el treball de resseguiment" -+msgstr "S'ha iniciat el treball de retraçat" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format -@@ -1874,8 +1874,8 @@ msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" --"Error en el resseguiment. Proveu-ho de nou més tard i si el problema " --"perdura, informeu d'aquesta incidència." -+"Error en el retraçat. Proveu-ho de nou més tard i si el problema perdura, " -+"informeu d'aquesta incidència." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" -@@ -1883,23 +1883,23 @@ msgstr "enregistra a syslog" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" --msgstr "permet la connexió insegura al servidor de resseguiment" -+msgstr "permet la connexió insegura al servidor de retraçat" - - #: ../src/plugins/abrt-retrace-client.c:1221 - msgid "" - "do not check whether retrace server is able to process given package before " - "uploading the archive" - msgstr "" --"no comprovis si el servidor de resseguiment és capaç de processar un " --"determinat paquet abans de pujar l'arxiu" -+"no comprovis si el servidor de retraçat és capaç de processar un determinat " -+"paquet abans de pujar l'arxiu" - - #: ../src/plugins/abrt-retrace-client.c:1224 - msgid "retrace server URL" --msgstr "URL del servidor de resseguiment" -+msgstr "URL del servidor de retraçat" - - #: ../src/plugins/abrt-retrace-client.c:1226 - msgid "retrace server port" --msgstr "port del servidor de resseguiment" -+msgstr "port del servidor de retraçat" - - #: ../src/plugins/abrt-retrace-client.c:1228 - msgid "(debug) show received HTTP headers" -@@ -1911,7 +1911,7 @@ msgstr "Per a les operacions create i batch" - - #: ../src/plugins/abrt-retrace-client.c:1231 - msgid "read data from ABRT problem directory" --msgstr "llegeix les dades des del directori del problema de l'ABRT" -+msgstr "llegeix les dades des del directori del problema d'ABRT" - - #: ../src/plugins/abrt-retrace-client.c:1233 - msgid "read data from coredump" -@@ -1988,14 +1988,13 @@ msgid "" - "to remote machines." - msgstr "" - "Necessita baixar els paquets debuginfo, els quals prenen un temps i espai de " --"disc considerable. No obstant això, a diferència dels servidors de " --"resseguiment, no envia els bolcs de la memòria a màquines remotes." -+"disc considerable. No obstant això, a diferència dels servidors de retraçat, " -+"no envia els bolcs de la memòria a màquines remotes." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" - msgstr "" --"Envia el bolc de la memòria al servidor remot de resseguiment per a " --"l'anàlisi" -+"Envia el bolc de la memòria al servidor remot de retraçat per a l'anàlisi" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" -@@ -2007,18 +2006,18 @@ msgid "" - msgstr "" - "Puja el bolc de la memòria a un servidor que genera una traça inversa i la " - "retorna. Pros: no hi ha la necessitat de baixar els debuginfo. La base de " --"dades dels debuginfo del servidor de resseguiment és més completa. El " --"servidor de resseguiment pot generar millor les traces inverses. Cons: el " --"bolc de la memòria que pugeu conté totes les dades del programa que ha " --"tingut pana, que inclouen les vostres dades privades, si fos el cas." -+"dades dels debuginfo del servidor de retraçat és més completa. El servidor " -+"de retraçat pot generar millor les traces inverses. Cons: el bolc de la " -+"memòria que pugeu conté totes les dades del programa que ha tingut pana, que " -+"inclouen les vostres dades privades, si fos el cas." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 - msgid "Retrace server URL" --msgstr "URL del servidor de resseguiment" -+msgstr "URL del servidor de retraçat" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 - msgid "Address of the retrace server" --msgstr "Adreça del servidor de resseguiment" -+msgstr "Adreça del servidor de retraçat" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 - msgid "Insecure" -@@ -2308,7 +2307,7 @@ msgstr "«%s» fa referència a més d'un directori de problema" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Ús: abrt-cli [--authenticate] [--version] ORDRE [DIR]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2411,12 +2410,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "No es pot trobar el problema «%s»" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "No es pot informar del problema «%s»" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2461,114 +2460,117 @@ msgstr "" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "El problema no té cap traça inversa" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Iniciar el procés de retraçament?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Mostra la traça inversa d'un problema" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Aquest" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "L'últim" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "{} problema no és d'un tipus C/C++. No es pot instal·lar el debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Permís denegat: '{}'\n" -+"Si aquest és un problema de sistema, proveu amb l'execució d'aquesta ordre " -+"com a root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Instal·la els debuginfo requerits per al problema donat" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Executa GDB contra un problema" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Format de sortida" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Format de sortida integrat" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Sense problemes" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Llista els problemes" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Imprimeix informació sobre el problema" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Pregunta abans de la supressió" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "No preguntis abans de la supressió" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Esteu segur que voleu suprimir aquest problema?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Eliminat" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Elimina el problema" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Informa el problema" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Realitza el retraçament local" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Realitza el retraçament remot mitjançant un servidor de retraçat" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Força el retraçament encara que ja existeixi la traça inversa" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "El problema ja té una traça inversa" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Executeu abrt retrace amb -f/--force per tornar a traçar-ho" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Mostrar la traça inversa?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "No és possible el retraçament per a aquest tipus de problema" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2577,51 +2579,57 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Voleu pujar el bolc de la memòria i realitzar el retraçament remot? (Pot " -+"contenir dades sensibles). Si la vostra resposta és «No», aleshores es " -+"generà localment una traça de la pila. El retraçament local pot baixar una " -+"gran quantitat de dades debuginfo." - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Retraçament remot" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Retraçament local" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Genera la traça inversa des del bolc de la memòria" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT ha detectat {} problem[a/es]. Per a més informació executeu: abrt " -+"list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Imprimeix el compte de les panes recents" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Autentifica i mostra tots els problemes en aquesta màquina" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Cap problema coincident" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "La concordança és ambigua i ha originat múltiples problemes:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "No es pot informar" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " - "analysis if the remote analysis fails" - msgstr "" --"Envia el bolc de la memòria a un servidor remot de resseguiment per a " --"l'anàlisi o per a la realització de l'anàlisi local si es produeix un error " --"en el servidor remot de l'anàlisi" -+"Envia el bolc de la memòria a un servidor remot de retraçat per a l'anàlisi " -+"o per a la realització de l'anàlisi local si es produeix un error en el " -+"servidor remot de l'anàlisi" - - #: ../src/plugins/analyze_CCpp.xml.in.h:2 - msgid "" -@@ -2637,10 +2645,10 @@ msgstr "" - "retorna. Si l'usuari no vol pujar el seu bolc de la memòria enlloc, " - "l'esdeveniment realitza localment l'anàlisi. L'anàlisi local s'executa si " - "falla l'anàlisi remota. Pros: no hi ha la necessitat de baixar els debuginfo." --" La base de dades dels debuginfo del servidor de resseguiment és més " --"completa. El servidor de resseguiment pot generar millor les traces inverses." --" Cons: el bolc de la memòria que pugeu conté totes les dades del programa " --"que ha tingut pana, que inclouen les vostres dades privades, si fos el cas." -+" La base de dades dels debuginfo del servidor de retraçat és més completa. " -+"El servidor de retraçat pot generar millor les traces inverses. Cons: el " -+"bolc de la memòria que pugeu conté totes les dades del programa que ha " -+"tingut pana, que inclouen les vostres dades privades, si fos el cas." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" -diff --git a/po/cs.po b/po/cs.po -index debed52..e202281 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -14,20 +14,22 @@ - # Petr Písař , 2010-2011 - # Jiri Eischmann , 2015. - # Zdenek , 2015. #zanata -+# Jiri Eischmann , 2016. #zanata -+# Zdenek , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-05-13 05:06-0400\n" --"Last-Translator: Zdenek \n" -+"PO-Revision-Date: 2016-04-01 04:30-0400\n" -+"Last-Translator: Jiri Eischmann \n" - "Language-Team: čeština \n" - "Language: cs\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -161,10 +163,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Možnost nastavení uvedená výše byla přesunuta do Nastavení Gnome a spínač je " -+"spojen s hodnotou nastavení \"Hlášení technických problémů\" ze schématu " -+"\"org.gnome.desktop.privacy\"." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Možnost nastavení uvedená výše lze nastavit v" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -191,6 +196,12 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Soubor obrazu paměti je nezbytný pro vygenerování zásobníku volání, což je " -+"časově a prostorově náročná operace. ABRT poskytuje službu, která vygeneruje " -+"zásobník volání z obrazu paměti, ale musíte do této služby obraz paměti " -+"nahrát. S volbou \"Vždy\" bude ABRT obraz paměti nahrávat vždy bez dalšího " -+"tázání. S volbou \"Nikdy\" bude zásobník volání vygenerován lokálně. S " -+"volbou \"Ptát se\" se bude ABRT vždy ptát uživatele." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -262,19 +273,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Vždy" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Nikdy" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Ptát se" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Nahrát obraz paměti pro vygenerování výpisu volání" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -301,7 +312,7 @@ msgstr "O" - msgid "Quit" - msgstr "Konec" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -311,8 +322,8 @@ msgstr "" - "\n" - "Dotáže databázi balíčků a uloží jméno balíčku a komponenty" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -323,15 +334,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Adresář problému" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurační soubor" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Použít tento adresář jako RPM root" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -339,29 +350,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Uloží zásobník metadat" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Kořenový adresář pro běžící zásobník příkazů" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [volby]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Použít NUM jako klient uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Protokolovat do syslogu" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Přidá názvy programů do protokolu" - -@@ -387,7 +398,7 @@ msgstr "Neautorizovaný" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Nelze otevřít problém" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -457,11 +468,11 @@ msgstr "Protokoluje do syslogu i s -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n PŘÍRŮSTEK] -e|--event UDÁLOST ADRESÁŘ..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "Spustí EVENT v DIR" -+msgstr "Spustí UDÁLOST v ADRESÁŘI" - - #: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" -@@ -469,7 +480,7 @@ msgstr "Komunikovat přímo s uživatelem" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Zvýšit hodnotu o PŘÍRŮSTEK" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -685,31 +696,31 @@ msgstr "Odstraňování adresáře problému selhalo: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Volání metody D-Bus GetInfo selhalo: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Nelze získat data o problému z abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "Nemohu získat seznam problémů z abrt-dbus: %s" -+msgstr "Nelze získat seznam problémů z abrt-dbus: %s" - - #: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 - #, c-format - msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nemohu získat data problému z abrt-dbus: %s" -+msgstr "Nelze získat data o problému z abrt-dbus: %s" - - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "Nelze otestovat zda-li element existuje nad abrt-dbus: %s" -+msgstr "Nelze otestovat, zda-li element existuje nad abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "Nemohu vytvořit dočasný soubor '%s'" -+msgstr "Nelze vytvořit dočasný soubor '%s'" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -717,14 +728,14 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"Nemohu zapisovat do '%s'. Problém '%s' nebude odstraněn z ignorovaných " -+"Nelze zapisovat do '%s'. Problém '%s' nebude odstraněn z ignorovaných " - "problémů '%s'" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "Nemohu přejmenovat '%s' na '%s'. Selhalo odstranění problému '%s'" -+msgstr "Nelze přejmenovat '%s' na '%s'. Selhalo odstranění problému '%s'" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -864,35 +875,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "nelze otevřít adresář problému '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Chyba adresáře problému: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Použití produktu '{0}' z /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Použití produktu '{0}'." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Použití verze produktu '{0}'." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Byl nalezen duplikát hlášení Bugzilly '#{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Neexistuje žádné hlášení Bugzilly s 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Varování: abrt-bodhi nepodporuje produktovou verzi 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -949,7 +960,7 @@ msgstr "Chyba: GDB nevrátilo žádná data" - msgid "Error: %s" - msgstr "Chyba: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Činnost ukončena na příkaz uživatele" - -@@ -972,65 +983,46 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Použití: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"Instaluje debuginfo pro všechny ID buildů v BUILD_IDS_FILE\n" --"do CACHEDIR pomocí TMPDIR jako dočasného vyčkávacího prostoru.\n" --"Staré soubory v CACHEDIR jsou smazány, dokud nejsou menší než SIZE.\n" --"\n" --"Načítá konfiguraci z /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Být upovídaný\n" --" -y Neinterkativní, předpokládá 'Ano' pro všechny otázky\n" --" --ids Výchozí: build_ids\n" --" --tmpdir Výchozí: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Výchozí: /var/cache/abrt-di\n" --" --size_mb Výchozí: 4096\n" --" --pkgmgr Výchozí: Správce balíčků z CCpp.conf nebo 'dnf'\n" --" -e,--exact Stáhnout pouze uvedený soubor\n" --" --repo Vzor, který použít pro hledání repozitářů.\n" --" Výchozí: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Nelze otevřít {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Obraz paměti odkazuje na {0} souborů ladicích údajů, {1} z nich nejsou " - "nainstalovány" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} souborů debuginfo není nainstalováno" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Neplatná konfigurace doplňku CCpp, nepodporovaný správce balíčku: '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Chybí požadovaný soubor: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Chybějící soubory ladících údajů: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Všechny soubory debuginfo jsou dostupné" - -@@ -1042,26 +1034,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i SOUBOR_ID_SESTAV|-i -] [-e CESTA[:CESTA]...]\n" -+" [-r REPOZITÁŘ]\n" -+"\n" -+"Instaluje ladící balíčky jádra pro všechna ID sestav uvedených v " -+"SOUBORU_ID_SESTAV do\n" -+"systémové paměti ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Neinteraktivní, předpokládá \"ano\" na šechny otázky" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- znamená STDIN, výchozí: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Stahovat pouze určené soubory" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Vzor k použití při vyhledávání repozitářů, výchozí: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Ignorované volby" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1304,7 +1302,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený oops" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1340,34 +1338,34 @@ msgstr "Selhalo zkompilování regexu" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Nelze aktualizovat problém: nenalezen žádný oops" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Nalezeno více oops: zprocesovat pouze první z nich" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Nepodařilo se získat všechny požadované informace ze žurnálu" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Neukládat opakující se pád po %ds (limit je %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Nepodařilo se uložit data detekovaného problému v abrt databazi" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Selhalo inicializování systemd-journal watch" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1391,59 +1389,59 @@ msgstr "" - "\n" - "Poslední zhlédnutá pozice je uložená v " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený záznam jádra" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Začít číst systemd-journal z pozice CURSOR" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Začít číst systemd-journal od konce" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Omezit vytváření adresářů s problémy na 1 za INT sekund" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Stejné jako -t INT, INT je specifikováno v plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Sleduj system-journal z poslední zhlédnuté pozice (pokud je dostupná)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Musíte zadat buď -c CURSOR nebo -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Nelze otevřít systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o záznamu jádra" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Nelze skočit na konec journalu" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1507,7 +1505,7 @@ msgstr "Selhalo nastartování sledování z kurzoru '%s'" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Selhala analýza výpisu volání z žurnálu" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1519,7 +1517,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1530,25 +1528,28 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Vypsat nalezené pády na standardní výstup" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" --msgstr "" -+msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený pád" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Filtr žurnálu např.'_COMM=gdm-x-session' (může být poskytnut mnohokrát)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Filtr žurnálu musí být specifikován buď parametrem -j nebo uložen v souboru /" -+"etc/abrt/plugins/xorg.conf" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o Xorg" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1570,7 +1571,7 @@ msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Selhala analýza výpisu volání z log souboru" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -2250,7 +2251,7 @@ msgstr "'%s' nalezl více než jeden adresář s problémy" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Použití: abrt-cli [--authenticate] [--version] PŘÍKAZ [ADRESÁŘ]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2266,7 +2267,7 @@ msgstr "Analyzuj a reportuj data problému v DIR" - - #: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" --msgstr "Tisk informací o DIR" -+msgstr "Vypsat informace o DIR" - - #: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" -@@ -2292,7 +2293,7 @@ msgstr "Vypsat seznam pouze nenahlášených problémů" - #. deprecate -d option with --pretty=full - #: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" --msgstr "Zbrazit detailní zprávu" -+msgstr "Zobrazit detailní zprávu" - - #: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" -@@ -2347,12 +2348,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Nelze najít problém '%s'" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Problém '%s' nelze nareportovat" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2396,114 +2397,116 @@ msgstr "Vybere pouze problémy detekované po časové značce" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Problém nemá výpis volání" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Spustit proces stopování?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Ukázat výpis volání problému" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Tento" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Poslední" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "{} problém není typu C/C++. Nelze nainstalovat debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Přístup odepřen: '{}'\n" -+"Pokud se jedná o problém systému, zkuste spustit tento příkaz jako root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Nainstalovat potřebné debuginfo pro daný problém" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Spustit GDB proti problému" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Formát výstupu" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Vestavěný formát výstupu" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Žádné problémy" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Vypsat problémy" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Vytisknout informace o problému" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Ptát se před odstraněním" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Neptat se před odstraněním" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Jste si jistí, že chcete smazat tento problém?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Odstraněno" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Smazat problém" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Reportovat problém" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Provést lokální stopování" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Provést vzdálené stopování pomocí stopovacího serveru" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Vynutit stopování, i když výpis volání už existuje" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Problém už výpis volání má" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Spustit stopování abrt s -f/--force pro opětovné stopování" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Ukázat výpis volání?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Stopování není možné pro tento typ problému" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2512,42 +2515,46 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Odeslat obraz paměti a provést vzdálené stopování? (Ten může obsahovat " -+"citlivá data). Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje " -+"lokálně. Lokální stopování vyžaduje stažení potenciálně velkého množství dat " -+"pro debuginfo." - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Vzdálené stopování" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Lokální stopování" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Vygenerovat výpis volání z obrazu paměti" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" --msgstr "" -+msgstr "ABRT detekoval {} problém(y). Pro více informací spusťte: abrt list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Vypsat počet nedávných pádů" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Autentizovat se a ukázat všechny problémy na tomto stroji" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Neodpovídá žádný problém" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Uvedena nejednoznačná shoda, což má za následek více problémů" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Nelze reportovat" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/da.po b/po/da.po -index 4d62355..5680ea8 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/da/)\n" - "Language: da\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -263,15 +263,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -282,43 +282,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemmappe" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurationsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [tilvalg]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Skriv til syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Føj programnavne til log" - -@@ -850,7 +850,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Afslutter på brugerkommando" - -@@ -873,7 +873,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -881,32 +884,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Kan ikke åbne {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Manglende debuginfo-fil: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1159,7 +1162,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1200,28 +1203,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1235,59 +1238,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1353,7 +1356,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/de.po b/po/de.po -index 73a2018..7f3d60c 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -16,21 +16,22 @@ - # noxin , 2013 - # Hedda Peters , 2015. #zanata - # Roman Spirgi , 2015. #zanata -+# Lisa Stemmler , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-08-19 02:33-0400\n" --"Last-Translator: Roman Spirgi \n" -+"PO-Revision-Date: 2016-03-01 06:18-0500\n" -+"Last-Translator: Lisa Stemmler \n" - "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" - "language/de/)\n" - "Language: de\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -57,7 +58,7 @@ msgstr "Benachrichtigung kann nicht geschlossen werden: %s" - - #: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "Hoppla!" -+msgstr "Oops!" - - #: ../src/applet/applet.c:616 - msgid "Report" -@@ -166,10 +167,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Die Konfigurationsoption oben wurde zu GSettings verschoben und der Switch " -+"ist mit dem Wert der Einstellung 'report-technical-problems' vom Schema 'org." -+"gnome.desktop.privacy' verbunden." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Die Konfigurationsoption oben kann konfiguriert werden in " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 -@@ -197,6 +201,13 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Die Speicherauszug-Datei ist notwendig zur Generierung eines Stack Trace, " -+"eine Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT " -+"bietet einen Service, der den Stack Trace aus dem Speicherauszug erstellt, " -+"allerdings müssen Sie den Speicherauszug für diesen Service hochladen. Mit " -+"der Option 'Always' wird ABRT immer ohne zu fragen den Speicherauszug " -+"hochladen. Mit der Option 'Never' wird das Stack-Trace immer lokal generiert." -+" Mit der Option 'Ask' wird ABRT immer vorher den Benutzer fragen. " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -278,19 +289,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Immer" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Nie" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Fragen" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Speicherauszug für Erstellung einer Ablaufverfolgung hochladen" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -317,7 +328,7 @@ msgstr "Über" - msgid "Quit" - msgstr "Beenden" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -327,8 +338,8 @@ msgstr "" - "\n" - "Paket-Datenbank durchsuchen und Paket- und Komponentennamen sichern" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -339,15 +350,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Fehler-Verzeichnis" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurationsdatei" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Dieses Verzeichnis als RPM-Root verwenden" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -355,29 +366,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Container-Metadata sichern" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Root-Verzeichnis, um Container-Befehle auszuführen" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM als Client-UID benutzen" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "In Systemprotokoll speichern" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Anwendungsnamen protokollieren" - -@@ -403,7 +414,7 @@ msgstr "Nicht erlaubt" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Problem kann nicht geöffnet werden" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -474,7 +485,7 @@ msgstr "Auch mit -d im Systemprotokoll speichern" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -486,7 +497,7 @@ msgstr "Direkt mit dem Benutzer kommunizieren" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "NICE Wert durch INCREMENT erhöhen" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -735,11 +746,11 @@ msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo Methoden-Aufruf fehlgeschlagen: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -819,7 +830,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "Coredump »%s« wird analysiert" -+msgstr "Speicherauszug »%s« wird analysiert" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-analyze-core.in:110 -@@ -856,10 +867,10 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" --"Der Backtrace enthält zu wenig auswertbare Daten. Dies ist zwar ärgerlich, " --"deutet aber nicht zwingend auf ein Problem Ihres Rechners hin. ABRT kann " --"keinen Fehlerbericht erstellen, Sie könnten jedoch die Kernel-Maintainer via " --"E-Mail kontaktieren." -+"Die Ablaufverfolgung enthält zu wenig auswertbare Daten. Dies ist zwar " -+"ärgerlich, deutet aber nicht zwingend auf ein Problem Ihres Rechners hin. " -+"ABRT kann keinen Fehlerbericht erstellen, Sie könnten jedoch die Kernel-" -+"Maintainer via E-Mail kontaktieren." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -922,35 +933,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "Problem-Verzeichnis kann nicht geöffnet werden '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Problem-Verzeichnis Fehler: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Verwendet Produkt '{0}' von /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Verwendet Produkt {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Verwendet Produkt-Version {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Doppelter Bugzilla Bug '#{0}' wurde gefunden" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Es gibt keinen Bugzilla Bug mit 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Warnung: abrt-bodhi unterstützt nicht Produktversion 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -1008,7 +1019,7 @@ msgstr "Fehler: GDB hat keine Daten zurückgegeben" - msgid "Error: %s" - msgstr "Fehler: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Abbruch durch Benutzerbefehl" - -@@ -1031,65 +1042,46 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" --"to CACHEDIR, using TMPDIR as temporary staging area.\n" --"Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" --"\n" --"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Be verbose\n" --" -y Noninteractive, assume 'Yes' to all questions\n" --" --ids Default: build_ids\n" --" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" --" --size_mb Default: 4096\n" --" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" --" -e,--exact Download only specified files\n" --" --repo Pattern to use when searching for repos.\n" --" Default: *debug*\n" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} kann nicht geöffnet werden: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Speicherauszug referenziert {0} Debuginfo-Dateien, {1} davon sind nicht " - "installiert" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} der Debuginfo-Dateien sind nicht installiert" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Ungültige CCpp-Addon-Konfiguration, nicht unterstützte Paketverwaltung: '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Angeforderte Datei fehlt: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Fehlende Debuginfo-Datei: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Alle Debuginfo-Dateien sind vorhanden" - -@@ -1101,26 +1093,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installiert debuginfo-Pakete für alle Build-IDs, die in BUILD_IDS_FILE " -+"aufgeführt \n" -+"sind, in den ABRT-Systemcache." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Nicht interaktiv, alle Fragen mit »ja« beantworten" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- bedeutet STDIN, Standard: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Nur angegebene Dateien herunterladen" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Muster zum Suchen nach Repositorys, Standard: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Ignorierte Option" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1375,7 +1373,7 @@ msgstr "" - "Meldung" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1412,34 +1410,34 @@ msgstr "Kompilieren von regex fehlgeschlagen" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Problem kann nicht aktualisiert werden: kein Oops gefunden" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Keine Oopse gefunden: nur erstes wird bearbeitet" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Abrufen der benötigten Journald-Informationen fehlgeschlagen" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Sich wiederholender Absturz nicht sichern nach %ds (Limit ist %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Fehlerdaten konnten nicht in ABRT-Datenbank gespeichert werden" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Systemd-Journal watch konnte nicht initialisiert werden" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1452,62 +1450,75 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Speicherauszug aus Systemd-Journal extrahieren\n" -+"\n" -+"-c und -e Optionen stehen in Konflikt, da beide die erste Nachricht " -+"bestimmen.\n" -+"\n" -+"-e ist nur für -f nützlich, weil das folgende Journal mit dem Lesen \n" -+"des gesamten Journals beginnt, wenn die zuletzt gesehene Position nicht " -+"verfügbar ist. \n" -+"\n" -+"Die zuletzt gesehene Position ist gespeichert in " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" --msgstr "Für jeden Coredump ein neues Fehlerverzeichnis erstellen" -+msgstr "Für jeden Speicherauszug ein neues Fehlerverzeichnis erstellen" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Systemd-Journal ab Cursor-Position lesen" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Systemd-Journal ab Ende lesen" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Fehlerverzeichnis-Erstellung auf 1 per INT Sekunde drosseln" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Gleich wie -t INT, INT ist definiert in plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Systemd-Journal ab der letzten gesehenen Position folgen (sofern verfügbar)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Entweder -c CURSOR oder -e muss angegeben werden" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Systemd-Journal kann nicht geöffnet werden" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" --"Systemd-Journal kann nicht nur auf systemd-coredump-Daten gefiltert werden" -+"Systemd-Journal kann nicht nur auf systemd-Speicherauszug-Daten gefiltert " -+"werden" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Das Ende des Journals konnte nicht erreicht werden" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1532,6 +1543,18 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extrahiert Oops aus Systemd-Journal\n" -+"\n" -+"-c und -e Optionen stehen in Konflikt, da beide die erste Nachricht " -+"bestimmen.\n" -+"\n" -+"-e ist nur für -f nützlich, weil das folgende Journal mit dem Lesen des \n" -+"gesamten Journals beginnt, wenn die zuletzt gesehene Position nicht " -+"verfügbar ist.\n" -+"\n" -+"Die zuletzt gesehene Position ist gespeichert in" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 - #: ../src/plugins/abrt-dump-journal-xorg.c:197 -@@ -1561,7 +1584,7 @@ msgstr "Beginn der Ansicht ab Cursor '%s' fehlgeschlagen" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Parsen der Ablaufverfolgung vom Journal aus fehlgeschlagen" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1573,7 +1596,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1584,25 +1607,29 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Gefundene Abstürze auf der Standardausgabe ausgegeben" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Neues Problemverzeichnis in DIR für jeden gefundenen Absturz erstellen" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Journalfilter z.B. '_COMM=gdm-x-session' (kann mehrfach angegeben werden)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Journalfilter muss entweder durch Parameter -j angegeben werden oder in der /" -+"etc/abrt/plugins/xorg.conf Datei gespeichert werden" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Systemd-Journal kann nicht nur auf Xorg-Daten gefiltert werden" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1624,7 +1651,7 @@ msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Fehler beim Parsen der Ablaufverfolgung aus der Log-Datei" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -1782,7 +1809,7 @@ msgstr "Der Server unterstützt keine xz-komprimierten Tar-Archive." - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "Die Version »%s« wird vom Rectrace-Server nicht unterstützt." -+msgstr "Die Version »%s« wird vom Retrace-Server nicht unterstützt." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." -@@ -2321,7 +2348,7 @@ msgstr "»%s« findet mehr als ein Fehlerverzeichnis" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Aufruf: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/abrt-cli.c:134 -@@ -2425,12 +2452,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Problem '%s' kann nicht gefunden werden" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Problem '%s' kann nicht gemeldet werden" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/report.c:63 ../src/cli/process.c:70 -@@ -2482,114 +2509,119 @@ msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Problem hat keine Ablaufverfolgung" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Rückverfolgungsprozess starten?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Ablaufverfolgung eines Problems anzeigen" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Dies" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Letzte" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" - msgstr "" -+"{} Problem ist nicht C/C++ Typ. Debuginfo kann nicht installiert werden" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Zugriff verweigert: '{}'\n" -+"Falls dies ein Systemfehler ist, versuchen Sie diesen Befehl als Root " -+"auszuführen" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Erforderliche Debuginfo für vorhandenes Problem installieren" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "GDB gegen ein Problem laufen lassen" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Ausgabeformat" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Eingebautes Ausgabeformat" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Keine Probleme" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Probleme auflisten" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Informationen zum Problem auflisten" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Vor Entfernung auffordern" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Nicht vor Entfernung auffordern" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Sind Sie sicher, dass Sie dieses Problem löschen wollen?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Entfernt" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Problem entfernen" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Problem melden" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Lokale Rückverfolgung durchführen?" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Entfernt zurückziehen mittels Retrace-Server" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" - msgstr "" -+"Rückverfolgung erzwingen, auch wenn Ablaufverfolgung bereits existiert" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Problem hat bereits eine Ablaufverfolgung" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Abrt retrace mit -f/--force ausführen um erneut zurückzuziehen" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Ablaufverfolgung anzeigen?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Keine Rückverfolgung möglich für diesen Problemtyp" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2598,42 +2630,49 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Speicherauszug hochladen und entfernte Rückverfolgung ausführen? " -+"(Möglicherweise sind vertrauliche Daten enthalten). Falls Sie »Nein« " -+"angeben, wird eine lokale Stack-Verfolgung erstellt. Lokale Rückverfolgung " -+"erfordert das Herunterladen einer potentiell großen Menge von Debuginfo-" -+"Daten" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Entfernte Rückverfolgung" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Lokale Rückverfolgung" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Ablaufverfolgung von Speicherauszug aus erstellen" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT hat {} Problem(e) entdeckt. Für weitere Infos führen Sie abrt list{} " -+"aus" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Anzahl der jüngsten Abstürze ausgeben" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Authentifizieren und alle Probleme auf dieser Maschine anzeigen" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Keine übereinstimmende Probleme" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Angegebene unklare Übereinstimmung führt zu mehreren Problemen:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Kann nicht gemeldet werden" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/el.po b/po/el.po -index 4430929..79833a4 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "language/el/)\n" - "Language: el\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -261,15 +261,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -280,43 +280,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Αρχείο παραμετροποίησης" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Καταγραφή στο syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Προσθήκη του ονόματος του προγράμματος στο αρχείο καταγραφής" - -@@ -845,7 +845,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Έξοδος μετά από εντολή χρήστη" - -@@ -868,7 +868,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -876,32 +879,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1154,7 +1157,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1195,28 +1198,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1230,59 +1233,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1348,7 +1351,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/en_GB.po b/po/en_GB.po -index abac5db..711a87b 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "fedora-abrt/language/en_GB/)\n" - "Language: en-GB\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -265,15 +265,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -284,43 +284,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Problem directory" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Configuration file" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Use NUM as client uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log to syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Add program names to log" - -@@ -864,7 +864,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Exiting on user command" - -@@ -887,7 +887,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -895,33 +898,33 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Can't open {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump references {0} debuginfo files, {1} of them are not installed" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Missing debuginfo file: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "All debuginfo files are available" - -@@ -1185,7 +1188,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1226,28 +1229,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1261,59 +1264,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1379,7 +1382,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/es.po b/po/es.po -index d91744e..b46dca1 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -27,21 +27,22 @@ - # Alex Puchades , 2015. #zanata - # Gerardo Rosales , 2015. #zanata - # Gladys Guerrero Lozano , 2015. #zanata -+# Máximo Castañeda Riloba , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-09-30 06:57-0400\n" --"Last-Translator: Gladys Guerrero Lozano \n" -+"PO-Revision-Date: 2016-03-13 08:32-0400\n" -+"Last-Translator: Máximo Castañeda Riloba \n" - "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/es/)\n" - "Language: es\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -178,10 +179,12 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Esa opción de configuración se ha llevado a GSettings. Se usa el valor de " -+"'report-technical-problems' del esquema 'org.gnome.desktop.privacy'." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Esa opción se puede configurar en" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -208,6 +211,12 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"El archivo de volcado es necesario para generar la traza de llamadas, en una " -+"operación costosa en tiempo y espacio. ABRT suministra un servicio que " -+"genera la traza a partir de ese archivo, pero para usarlo hay que enviar el " -+"archivo a ese servicio. Con la opción 'Siempre' ABRT subirá el archivo sin " -+"preguntar. Con 'Nunca' se generará la traza en el equipo local. Con " -+"'Preguntar' ABRT preguntará siempre qué hacer." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -281,19 +290,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Siempre" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Nunca" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Preguntar" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Enviar archivo de volcado para generar información de seguimiento" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -320,7 +329,7 @@ msgstr "Acerca de" - msgid "Quit" - msgstr "Salir" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -331,8 +340,8 @@ msgstr "" - "Interrogar a la base de datos de paquetes y guardar el nombre de paquete y " - "componente" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -343,15 +352,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Carpeta de problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Archivo de configuración" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Utilizar esta carpeta como raíz RPM" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -359,29 +368,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Guardar metadatos del contenedor" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Carpeta raíz para los comandos de contenedor mientras se ejecutan" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Utilice NUM como uid del cliente" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registrar en syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Añadir nombre de programa al registro" - -@@ -407,7 +416,7 @@ msgstr "No autorizado" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "No se puede abrir el problema" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -478,7 +487,7 @@ msgstr "Registrar en syslog aún con -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENTO] -e|--event EVENTO DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -490,7 +499,7 @@ msgstr "Comunicar directamente al usuario" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Aumentar el valor 'nice' en INCREMENTO" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -718,11 +727,11 @@ msgstr "Falló el borrado de la carpeta de problema: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Falló la llamada al método D-Bus GetInfo: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "No se pudieron obtener datos del problema mediante abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -901,35 +910,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "no es posible abrir el directorio del problema: '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Error con el directorio de problema: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Usando producto '{0}' de /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Usando producto {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Usando versión de producto {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Se encontró un informe bugzilla duplicado: '#{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "No hay ningún informe bugzilla con 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Aviso: abrt-bodhi no da soporte para 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -987,7 +996,7 @@ msgstr "Error: GDB no devolvió ningún dato" - msgid "Error: %s" - msgstr "Error: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Saliendo a solicitud del usuario" - -@@ -1010,67 +1019,47 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Uso: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"Instala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\n" --"a CACHEDIR, usando TMPDIR como área temporal de pruebas.\n" --"Los archivos antiguos en CACHEDIR son eliminados hasta que su tamaño sea " --"menor que SIZE.\n" --"\n" --"Lee la configuración de /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Explicito\n" --" -y No interactivo, asume 'Si' a todas las preguntas\n" --" --ids Prederterminado: build_ids\n" --" --tmpdir Prederterminado: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Prederterminado: /var/cache/abrt-di\n" --" --size_mb Prederterminado: 4096\n" --" --pkgmgr Prederterminado: PackageManager from CCpp.conf or 'dnf'\n" --" -e,--exact Descarga los archivos especificados unicamente\n" --" --repo Patrón a usar cuando se buscan repos.\n" --" Prederterminado: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "No se puede abrir {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "El archivo de volcado hace referencia a los archivos de información de " - "dupuración {0}, de los cuales {1} no están instalados" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} de archivos debuginfo no están instalados" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Configuración inválida del complemento CCpp, gestor de paquetes no soportado:" - " '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Falta el archivo solicitado: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "No se encuentra el archivo de información de depuración: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Todos los archivos debuginfo están disponibles" - -@@ -1082,26 +1071,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Instala paquetes debuginfo para todos los build-ids listados en el fichero\n" -+"BUILD_IDS_FILE en la caché de sistema de ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "No interactivo: supone que se responde 'sí' a todas las preguntas" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- para la entrada estándar; valor predeterminado: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Descarga únicamente los archivos especificados" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" - msgstr "" -+"Patrón para usar cuando se buscan repositorios, el predeterminado : *debug* " - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Opción ignorada" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1346,7 +1341,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Creado una nueva carpeta de problemas en DIR por cada ups encontrado" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1369,7 +1364,7 @@ msgstr "Hacer la carpeta de problemas legible por todos" - #: ../src/plugins/abrt-dump-journal-oops.c:227 - #: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" --msgstr "Acelerar la creación de la carpeta de problemas a 1 por segundo" -+msgstr "Limitar la creación de la carpeta de problemas a 1 por segundo" - - #: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" -@@ -1382,36 +1377,36 @@ msgstr "Fallo al compilar regex" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "No se pudo actualizar el problema: no se encontró ningún oops" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Se encontraron más oops, sólo se procesará el primero" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "No se pudo obtener toda la información necesaria de journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "No se guarda el fallo recurrente después de %ds (el límite es %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - "No se pudo guardar los datos de detección de problemas en la base de datos " - "de abrt" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Fallo al inicializar systemd-journal watch" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1436,63 +1431,63 @@ msgstr "" - "\n" - "La última posición fue guardada en " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Crear nueva carpeta de problemas en DIR por cada volcado de memoria" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Inicia leyendo systemd-journal desde la posición CURSOR" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Inicia leyendo systemd-journal desde el final" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - "Acelerar la creación de carpetas de problemas a 1 por cada INT segundos" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Lo mismo que -t INT, INT está especificado en plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Sigue systemd-jounal desde la última posición vista(si está disponible)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Necesitas especificar -c CURSOR o -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "No se puede abrir systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "No pueden filtrarse unicamente los datos de systemd-journal a systemd-" - "coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "No se puede buscar hacia el final del diario" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1558,7 +1553,7 @@ msgstr "Fallo al iniciar watch desde el cursor '%s'" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "No se pudo interpretar la traza de pila del registro" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1570,7 +1565,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1581,25 +1576,29 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Lista las caídas encontradas en la salida estándar" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" --msgstr "" -+msgstr "Crea un directorio de problemas en DIR para cada fallo encontrado" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Filtro del diario, por ejemplo: '_COMM=gdm-x-session'; puede indicarse " -+"varias veces" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"El filtro del diario debe indicarse con el parámetro -j o bien estar en /etc/" -+"abrt/plugins/xorg.conf." - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "No se puede filtrar el diario para obtener sólo datos de Xorg" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1617,11 +1616,11 @@ msgstr "Prime los datos del cuelgue encontrados en la salida estándar" - - #: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" --msgstr "Crear una carpeta de problemaa en DIR por cada crash encontrado" -+msgstr "Crea un directorio de problemas en DIR para cada fallo encontrado" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "No se pudo interpretar el volcado del archivo de registro" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -2320,7 +2319,7 @@ msgstr "'%s' identificado más de una carpeta de problema" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Uso: abrt-cli [--authenticate] [--version] COMMANDO [DIR]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2422,12 +2421,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "No se puede encontrar el problema '%s'" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "No se puede informar del problema '%s'" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2472,114 +2471,120 @@ msgstr "Selecciona únicamente los problemas después del tiempo especificado" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "El problema no tiene trazas" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "¿Iniciar el proceso de obtención de trazas?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Muestra la traza de un problema" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Este" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "El último" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" - msgstr "" -+"{} problema no es del tipo C/C++. No se puede instalar información de " -+"depuración" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Permiso denegado: '{}'\n" -+"Si es un problema de sistema, pruebe a ejecutar el comando como root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" - msgstr "" -+"Instala los archivos de depuración necesarios para el problema indicado" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Ejecuta GDB contra un problema" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Formato de salida" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Formato de salida interno" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "No hay problemas" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Listar problemas" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Mostrar información sobre un problema" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Preguntar antes de borrar" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "No preguntar antes de borrar" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "¿Seguro que quiere borrar este problema?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Borrado" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Borrar problema" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Informar de problema" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Realiza una traza local" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Realiza una traza remota usando el servidor de trazas" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Fuerza la generación de trazas incluso si ya existen" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "El problema ya tiene trazas" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" - msgstr "" -+"Ejecute abrt retrace con -f o --force para volver a generar las trazas" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "¿Mostrar trazas?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "No se pueden generar trazas para este tipo de problema" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2588,42 +2593,47 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"¿Enviar el archivo de volcado (puede contener información sensible) para " -+"generar la traza remotamente? Si responde 'No', se generará la traza en la " -+"máquina local, para lo cual puede ser necesario descargar una gran cantidad " -+"de información de depuración." - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Traza remota" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Traza local" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Generar traza a partir de archivo de volcado" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT ha detectado {} problema(s). Para más información ejecute: abrt list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Mostrar la cantidad de caídas recientes" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Autentica y muestra todos los problemas en este máquina" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "No se encontró ningún problema coincidente" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Búsqueda ambigua, se encontraron varios problemas:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "No se puede informar" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/et.po b/po/et.po -index b45ae6c..dc93f16 100644 ---- a/po/et.po -+++ b/po/et.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/et/)\n" - "Language: et\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -262,15 +262,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -281,43 +281,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Probleemide kataloog" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Seadistuste fail" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [valikud]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logi syslog-i" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lisa programminimed logisse" - -@@ -861,7 +861,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Väljumine kasutaja käsul" - -@@ -884,7 +884,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -892,33 +895,33 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} avamine nurjus: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Tuumatõmmis viitab {0} silumisinfo failidele, {1} neist ei ole paigaldatud" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Puuduv silumisinfo fail: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Kõik silumisinfo failid on saadaval" - -@@ -1177,7 +1180,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1218,28 +1221,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1253,59 +1256,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1371,7 +1374,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/eu.po b/po/eu.po -index 36c79c9..0425540 100644 ---- a/po/eu.po -+++ b/po/eu.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/eu/)\n" - "Language: eu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -258,15 +258,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -277,43 +277,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurazio fitxategia" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [aukerak]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -842,7 +842,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -865,7 +865,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -873,32 +876,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Ezin da {0} ireki: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1151,7 +1154,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1192,28 +1195,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1227,59 +1230,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1345,7 +1348,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/fa.po b/po/fa.po -index 820fec0..27c5c77 100644 ---- a/po/fa.po -+++ b/po/fa.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "language/fa/)\n" - "Language: fa\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -260,15 +260,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -279,43 +279,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "در syslog سیاهه شد" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -844,7 +844,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "به فرمان کاربر در حال خارج شدن است" - -@@ -867,7 +867,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -875,32 +878,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1153,7 +1156,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1194,28 +1197,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1229,59 +1232,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1347,7 +1350,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/fi.po b/po/fi.po -index b34f717..d80ae49 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +23,7 @@ msgstr "" - "language/fi/)\n" - "Language: fi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -274,7 +274,7 @@ msgstr "Tietoja" - msgid "Quit" - msgstr "Lopeta" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -284,8 +284,8 @@ msgstr "" - "\n" - "Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -296,15 +296,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Ongelmahakemisto" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Asetustiedosto" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Käytä tätä hakemistoa RPM-juurihakemistona" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -312,29 +312,29 @@ msgstr "& [-v] -d HAK\n" - "\n" - "Tallenna säiliön metatiedot" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [valitsimet]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Kirjoita lokia syslogiin" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lisää ohjelmanimet lokiin" - -@@ -863,7 +863,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Lopetetaan, käyttäjä antoi lopetuskomennon" - -@@ -886,7 +886,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -894,33 +897,33 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Ei voida avata {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Muistivedos viittaa {0} debuginfo-tiedostoon, {1} niistä ei ole asennettuna" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Puuttuva debuginfo-tiedosto: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Kaikki debuginfo-tiedostot ovat saatavilla" - -@@ -1173,7 +1176,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1215,28 +1218,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1250,59 +1253,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1368,7 +1371,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/fr.po b/po/fr.po -index 43a8e21..5a241c6 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -21,22 +21,25 @@ - # Julie Carbone , 2015. #zanata - # Maxim Therrien , 2015. #zanata - # dominique , 2015. #zanata -+# Jakub Filak , 2016. #zanata -+# Jibec , 2016. #zanata -+# Julie Carbone , 2016. #zanata - # Jérôme Bivia , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2016-01-16 11:19-0500\n" --"Last-Translator: Jérôme Bivia \n" -+"PO-Revision-Date: 2016-07-14 05:31-0400\n" -+"Last-Translator: Jakub Filak \n" - "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" - "language/fr/)\n" - "Language: fr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -172,10 +175,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"L'option de configuration ci-dessus a été déplacée vers GSettings est le " -+"basculement est lié à la valeur du paramètre « report-technical-problems » à " -+"partir du schéma « org.gnome.desktop.privacy »." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "L'option de configuration ci-dessus peut être configurée dans" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -202,6 +208,14 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Le fichier coredump (vidage système) est nécessaire pour générer une trace " -+"d'appels, une opération occupant de l'espace mais aussi du temps. ABRT " -+"fournit un service générant la trace d'appels à partir du coredump, mais il " -+"convient de téléverser le coredump vers ce service. Avec l'option Always " -+"(Toujours), ABRT téléversera toujours le coredump sans en faire la demande. " -+"Avec l'option Never, la trace d'appels sera toujours générée localement. " -+"Avec l'option Ask, ABRT effectuera toujours une demande auprès de " -+"l'utilisateur." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -280,19 +294,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Toujours" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Jamais" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Demander" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Téléverser coredump pour génération de trace inverse" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -319,7 +333,7 @@ msgstr "À propos" - msgid "Quit" - msgstr "Quitter" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -330,8 +344,8 @@ msgstr "" - "Interroge la base de données des paquets et sauvegarde les noms du paquet et " - "du composant" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -342,15 +356,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Répertoire des incidents" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Fichier de configuration" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Utiliser ce répertoire comme racine RPM" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -358,29 +372,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Sauvegarder les métadonnées du conteneur" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Répertoire racine pour lancer les commandes du conteneur" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Utiliser NUM en tant qu'UID client" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Journaliser vers syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Ajouter le nom des programmes dans le journal" - -@@ -406,7 +420,7 @@ msgstr "Interdit" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Impossible d'ouvrir l'incident" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -478,7 +492,7 @@ msgstr "Journaliser vers syslog même avec -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -490,7 +504,7 @@ msgstr "Communiquer directement à l'utilisateur" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Augmenter la valeur nice par INCREMENT" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -733,11 +747,11 @@ msgstr "La suppression du répertoire d'incidents a échoué : %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo method call failed: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -922,35 +936,37 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "impossible d'ouvrir le répertoire de l'incident '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Erreur de répertoire de l'incident : {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Utilisation du produit '{0}' à partir de /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Utilisation du produit {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Utilisation de la version du produit {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Bogue Bugzilla dupliqué '#{0}' trouvé" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Aucun bogue Bugzilla avec 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" - msgstr "" -+"Avertissement : abrt-bodhi ne prend pas en charge la version de produit " -+"'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -1008,12 +1024,12 @@ msgstr "Erreur : GDB n'a retourné aucune information" - msgid "Error: %s" - msgstr "Erreur : %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Arrêt à la demande de l'utilisateur" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 --#, fuzzy, c-format -+#, c-format - msgid "" - "Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" - " [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -@@ -1031,68 +1047,47 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"Installe les informations de déboguage pour tous les BUILD_IDS listés dans " --"BUILD_IDS_FILE\n" --"dans CACHEDIR, utilisant TMPDIR en tant que dossier temporaire.\n" --"Les anciens fichiers dans CACHEDIR sont supprimés jusqu'à temps que le " --"répertoire soit plus petit que SIZE.\n" --"\n" --"Lit la configuration /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Être verbeux\n" --" -y Non-interactif, assume « Oui » à toutes les questions\n" --" --ids Défaut: build_ids\n" --" --tmpdir Défaut: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Défaut: /var/cache/abrt-di\n" --" --size_mb Défaut: 4096\n" --" --pkgmgr Défaut: PackageManager de CCpp.conf ou 'dnf'\n" --" -e,--exact Télécharge seulement les fichiers spécifiés\n" --" --repo Motif à utiliser lors de la recherche de dépôts\n" --" Défaut: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Impossible d'ouvrir {0} : {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Le vidage mémoire fait référence à {0} fichiers debuginfo, {1} d'entre eux " - "n'est(ne sont) pas installé(s)" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} des fichiers debuginfo ne sont pas installés" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "La configuration de l'addition CCpp est invalide, gestionnaire de paquets " - "invalide: « %s »" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Fichier requis manquant : {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Fichier debuginfo manquant : {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Tous les fichiers debuginfo sont disponibles" - -@@ -1104,26 +1099,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Non-interactif, répondre « Oui » à toutes les questions" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- means STDIN, default: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Télécharger les fichiers spécifiés uniquement" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" - msgstr "" -+"Schéma à utiliser lors de la recherche de référentiels, par défaut : *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Option ignorée" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1195,7 +1196,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "Un bogue concernant ce problème a déjà été enregistré :" -+msgstr "Un bogue concernant cet incident a déjà été enregistré :" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:158 -@@ -1374,7 +1375,7 @@ msgstr "" - "Créer un nouveau répertoire d'incidents dans DIR pour chaque oups découvert" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1411,36 +1412,36 @@ msgstr "Échec de la compilation des expressions régulières" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Impossible de mettre à jour l'incident : aucun oups trouvé" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Autres oups trouvés : ne traiter que le premier" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - "Échec de l'obtention de toutes les informations nécessaires de journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Ne sauvegardera pas un plantage répétitif après %ds (limite: %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" --"Échec de la sauvegarde des données du problème détecté dans la base d'ABRT" -+"Échec de la sauvegarde des données de l'incident détecté dans la base d'ABRT" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Échec de l'initialisation de la surveillance systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1466,62 +1467,64 @@ msgstr "" - "\n" - "La dernière position lue est sauvegardée dans " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - "Créer un nouveau répertoire d'incidents dans DIR pour chaque vidage de la " - "mémoire découvert" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Débuter la lecture du systemd-journal depuis la position du CURSEUR" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Débuter la lecture du systemd-journal depuis la fin" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Limiter la création de répertoire d'incident à 1 par INT seconde(s)" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Identique à -t INT, INT est spécifié dans plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Suivre systemd-journal depuis la dernière position lue (si disponible)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Vous devez spécifier soit -c CURSEUR ou -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Impossible d'ouvrir systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" -+"Impossible de filtrer systemd-journal pour des données systemd-coredump " -+"uniquement" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Impossible de déplacer le curseur vers la fin du journal" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1547,6 +1550,16 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract oops from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 - #: ../src/plugins/abrt-dump-journal-xorg.c:197 -@@ -1562,21 +1575,22 @@ msgstr "Lire tous les fichiers de journaux dans le répertoire PATH" - #: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Impossible d'initialiser systemd-journal dans le répertoire '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" -+"Impossible de filtrer systemd-journal pour des données de noyau uniquement" - - #: ../src/plugins/abrt-dump-journal-oops.c:300 - #: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "" -+msgstr "Impossible de démarrer watch à partir du curseur '%s'" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "impossible d'analyser la trace inverse à partir du journal" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1588,7 +1602,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1599,25 +1613,32 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Afficher les incidents trouvés sur la sortie standard" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Créer un nouveau répertoire d'incidents dans DIR pour chaque incident " -+"découvert" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Filtre du journal, par exemple '_COMM=gdm-x-session' (peut être donné " -+"plusieurs fois)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Le filtre du journal doit être spécifié avec le paramètre -j ou stocké dans " -+"le fichier /etc/abrt/plugins/xorg.conf" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" - msgstr "" -+"Impossible de filtrer systemd-journal pour des données Xorg uniquement" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1641,54 +1662,65 @@ msgstr "" - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" - msgstr "" -+"Impossible d'analyser la trace inverse depuis le fichier de journalisation" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "" -+msgstr "Impossible de sauvegarder la position watch du journal" - - #: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" --msgstr "" -+msgstr "Impossible de sauvegarder la position watch du journal : open('%s')" - - #. Only notice because this is expected - #: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" -+"Position watch du journal non restaurée : le fichier '%s' n'existe pas" - - #: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" -+"Impossible de restaurer la position watch du journal à partir du fichier " -+"'%s'" - - #: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" -+"Impossible de restaurer la position watch du journal : '%s' n'est pas un " -+"fichier régulier" - - #: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" -+"Impossible de restaurer la position watch du journal : '%s' dépasse la " -+"taille limite de %dB" - - #: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" --msgstr "" -+msgstr "Impossible de restaurer la position watch du journal : open('%s')" - - #: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -+"Impossible de restaurer la position watch du journal : impossible de lire le " -+"fichier entier '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -+"Impossible de déplacer le journal vers un curseur à partir du fichier '%s'" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" -@@ -1777,6 +1809,8 @@ msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." - msgstr "" -+"La taille du vidage est de %s, mais le serveur retrace accepte uniquement " -+"des incidents de taille inférieure ou égale à %s." - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." -@@ -1806,11 +1840,13 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" -+"La taille de l'archive est de %s, mais le serveur retrace accepte uniquement " -+"des archives de taille inférieure ou égale à %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "Vous êtes sur le point de téléverser %s. Continuer ?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" -@@ -1819,7 +1855,7 @@ msgstr "Annulé par l'utilisateur" - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "Téléversement de %s\n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format -@@ -2236,17 +2272,18 @@ msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" --"Un problème de noyau s'est produit car le BIOS est cassé. Malheureusement, " --"de tels problèmes ne peuvent pas être corrigés par les mainteneurs du noyau." -+"Un incident de noyau s'est produit dû à une rupture du BIOS. " -+"Malheureusement, de tels incidents ne peuvent pas être corrigés par les " -+"mainteneurs du noyau." - - #: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" --"Un problème de noyau s'est produit, mais votre matériel n'est pas pris en " --"charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger ce " --"problème." -+"Un incident de noyau s'est produit, mais votre matériel n'est pas pris en " -+"charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger cet " -+"incident." - - #: ../src/plugins/oops-utils.c:220 - #, c-format -@@ -2335,7 +2372,7 @@ msgstr "« %s » identifie plus d'un répertoire d'incident" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Utilisation : abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2360,7 +2397,7 @@ msgstr "Affiche le nombre de plantages récents" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" --msgstr "Traiter de multiples problèmes" -+msgstr "Traiter de multiples incidents" - - #: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" -@@ -2369,12 +2406,12 @@ msgstr "" - - #: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [options]" - - #: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 - #: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" --msgstr "Répertorier les problèmes non rapportés uniquement" -+msgstr "Répertorier les incidents non rapportés uniquement" - - #. deprecate -d option with --pretty=full - #: ../src/cli/list.c:138 ../src/cli/list.c:191 -@@ -2384,7 +2421,7 @@ msgstr "Afficher le rapport détaillé" - #: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" --"Répertorier uniquement les problèmes plus récents que la date indiquée" -+"Répertorier uniquement les incidents plus récents que la date indiquée" - - #: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" -@@ -2417,7 +2454,7 @@ msgstr "Répertoire d'incidents « %s » inconnu" - - #: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - - #: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" -@@ -2437,12 +2474,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Impossible de trouver le problème « %s »" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "L'incident '%s' ne peut être signalé" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/report.c:63 ../src/cli/process.c:70 -@@ -2486,123 +2523,126 @@ msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." --msgstr "Sans l'argument --since, réitère tous les problèmes détectés." -+msgstr "Sans l'argument --since, réitère tous les incidents détectés." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" --msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" -+msgstr "Sélectionne uniquement les incidents détectés après l'horodatage" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "L'incident n'a aucune trace inverse" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Commencer à retracer le procédé ?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Afficher la trace inverse d'un incident" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Cet" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Le dernier" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "{} incident n'est pas de type C/C++. Impossible d'installer debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Permission refusée : '{}'\n" -+"Si cet incident concerne le système, essayez d'exécuter cette commande en " -+"tant que root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Install nécessitait debuginfo pour l'incident donné" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Exécuter GDB pour résoudre un problème" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Format de sortie" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Format de sortie intégré" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Aucun problème" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Répertorier les problèmes" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Imprimer des informations sur cet incident" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Demander avant la suppression" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Ne pas demander avant la suppression" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Êtes-vous sûr de vouloir supprimer cet incident ?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Supprimé" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Supprimer l'incident" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Signaler le problème" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Retracer localement" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Retracer à distance à l'aide du serveur de retrace" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Forcer le retraçage même si la trace arrière existe déjà" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Cet incident possède déjà une trace inverse" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Exécuter abrt retrace avec -f/--force pour retracer à nouveau" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Afficher la trace inverse ?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Aucun retraçage possible pour ce type d'incident" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2611,42 +2651,48 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Téléverser core dump et retracer à distance ? (Peut contenir des données " -+"sensibles). Si votre réponse est Non, une trace d'appels sera générée " -+"localement. Le retraçage local peut nécessiter de télécharger un grand " -+"nombre de données debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Retraçage à distance" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Retraçage local" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Générer une trace inverse à partir de coredump" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT a détecté {} incident(s). Pour plus d'informations, exécuter abrt " -+"list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Afficher le nombre de plantages récents" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "S'authentifier et afficher tous les incidents sur cette machine" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Aucun incident(s) correspondant" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Correspondances ambigües spécifiées entraînant plusieurs incidents :" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Ne peut être signalé" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -@@ -2666,6 +2712,15 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"Téléverse le vidage mémoire sur un serveur, qui génère une trace arrière et " -+"la retourne. Si l'utilisateur ne souhaite pas téléverser le vidage mémoire " -+"où que ce soit, l'événement effectuera une analyse locale. L'analyse locale " -+"est exécutée même si l'analyse distante échoue. Avantages : il n'est pas " -+"nécessaire d'effectuer des téléchargements de fichiers debuginfo. La base de " -+"données du serveur Retrace des debuginfos est plus complète. Le serveur " -+"Retrace peut générer de meilleures traces arrières. Inconvénients : les " -+"vidages mémoire téléchargés contiennent toutes les données du programme en " -+"panne, y compris les données privées s'il y en a." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" -diff --git a/po/gl.po b/po/gl.po -index 61bd784..3c6c021 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: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/gl/)\n" - "Language: gl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -262,15 +262,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -281,43 +281,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Directorio de problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Ficheiro de configuración" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcións]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Empregar NUM como identificador de usuario do cliente" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Rexistrar en syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Engadir os nomes dos programas ao rexistro" - -@@ -882,7 +882,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "A saír por orde do usuario" - -@@ -905,7 +905,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -913,32 +916,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1191,7 +1194,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1232,28 +1235,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1267,59 +1270,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1385,7 +1388,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/gu.po b/po/gu.po -index a95b17f..ed02019 100644 ---- a/po/gu.po -+++ b/po/gu.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +23,7 @@ msgstr "" - "language/gu/)\n" - "Language: gu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -286,15 +286,15 @@ msgstr "વિશે" - msgid "Quit" - msgstr "બહાર નીકળો" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -305,43 +305,43 @@ msgstr "" - msgid "Problem directory" - msgstr "સમસ્યા ડિરેક્ટરી" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "રૂપરેખાંકન ફાઇલ" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "ક્લાયન્ટ uid તરીકે NUM ને વાપરો" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog માં લૉગ લો" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "લૉગ રાખવા માટે કાર્યક્રમ નામો ઉમેરો" - -@@ -958,7 +958,7 @@ msgstr "ભૂલ: GDB એ કોઇપણ માહિતી પરત મળ - msgid "Error: %s" - msgstr "ભૂલ: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "વપરાશકર્તા આદેશ પરથી બહાર નીકળા રહ્યા છે" - -@@ -981,7 +981,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -989,34 +992,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} ખોલી શકાતુ નથી: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump એ {0} debuginfo ફાઇલોનો સંદર્ભ આપે છે, તેઓમાંનુ {1} સ્થાપિત થયેલ " - "નથી" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "debuginfo માંની {0} ફાઇલો સ્થાપિત થયેલી નથી" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "અરજી થયેલી ગુમ ફાઇલ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "ગેરહાજર debuginfo ફાઇલ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "બધી ડિબગ જાણકારી ફાઇલો ઉપલબ્ધ છે" - -@@ -1294,7 +1297,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "મળેલ દરેક oops માટે DIR માં નવી સમસ્યા ડિરેક્ટરીને બનાવો" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1336,28 +1339,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1371,59 +1374,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1489,7 +1492,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/he.po b/po/he.po -index d6b6a71..1939477 100644 ---- a/po/he.po -+++ b/po/he.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "language/he/)\n" - "Language: he\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -260,15 +260,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -279,43 +279,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "רשום ליומן המערכת" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -844,7 +844,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "יוצא לפקודת המשתמש" - -@@ -867,7 +867,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -875,32 +878,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1153,7 +1156,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1194,28 +1197,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1229,59 +1232,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1347,7 +1350,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/hi.po b/po/hi.po -index 0ec276c..3877c3c 100644 ---- a/po/hi.po -+++ b/po/hi.po -@@ -14,21 +14,22 @@ - # Umesh Agarwal , 2013 - # zz , 2012 - # Rajesh Ranjan , 2015. #zanata -+# Rajesh Ranjan , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-08 06:16-0500\n" -+"PO-Revision-Date: 2016-06-04 03:48-0400\n" - "Last-Translator: Rajesh Ranjan \n" - "Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-abrt/" - "language/hi/)\n" - "Language: hi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -300,15 +301,15 @@ msgstr "परिचय" - msgid "Quit" - msgstr "बाहर" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -317,45 +318,45 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "समस्या निर्देशिका" -+msgstr "समस्या निर्देशिका " - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" --msgstr "विन्यास फाइल" -+msgstr "विन्यास फ़ाइल" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [विकल्प]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM को बतौर क्लायंट uid उपयोग करें" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "सिसलॉग में लॉग करेंसिस्टल" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "लाग करने के लिए अधिक प्रोग्राम नाम" - -@@ -642,7 +643,7 @@ msgstr "'{0}' में निर्देशिका बदल नहीं - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "अज्ञात फाइल प्रकार: '{0}'" -+msgstr "अज्ञात फ़ाइल प्रकार: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-handle-upload.in:210 -@@ -972,7 +973,7 @@ msgstr "त्रुटि: GDB ने कोई डाटा नहीं व - msgid "Error: %s" - msgstr "त्रुटि: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "उपयोक्ता कमांड पर बाहर निकल रहा है" - -@@ -995,7 +996,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1003,32 +1007,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} खोल नहीं सकता है: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "कोरडंप संदर्भ {0} डिबगइंफो फ़ाइल, उनमें से {1} संस्थापित नहीं है" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "डिबगइंफो फ़ाइल का {0} संस्थापित नहीं है" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "निवेदित फ़ाइल अनुपस्थित: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "अनुपस्थित डिबगइंफो फ़ाइल: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "सभी डिबगइंफो फ़ाइलें उपलब्ध हैं" - -@@ -1306,7 +1310,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "DIR में हर वूप्स क्षण के लिए नयी समस्या निर्देशिका बनाएँ" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1348,28 +1352,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1383,59 +1387,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1501,7 +1505,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/hu.po b/po/hu.po -index bdb34ab..dd6469c 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -12,23 +12,23 @@ - # teknos.ferenc , 2013-2014 - # Zoltan Hoppár , 2011-2013 - # Zoltan Hoppár , 2014 --# Kardos László , 2015. #zanata --# Szűcs Kornél Géza , 2015. #zanata -+# Jakub Filak , 2016. #zanata -+# Meskó Balázs , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-12-16 06:53-0500\n" --"Last-Translator: Szűcs Kornél Géza \n" -+"PO-Revision-Date: 2016-07-14 05:47-0400\n" -+"Last-Translator: Jakub Filak \n" - "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/hu/)\n" - "Language: hu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -36,22 +36,22 @@ msgstr "Hibajelentés" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "Alkalmazás összeomlás megtekintés és jelentés" -+msgstr "Alkalmazás összeomlások megtekintése és jelentése" - - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "'%s' tulajdona nem átvehető" -+msgstr "A(z) „%s” tulajdona nem átvehető" - - #: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "Mappa nem megnyitható írásra: '%s'" -+msgstr "A(z) „%s” mappa nem nyitható meg írásra" - - #: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" --msgstr "Jelzés nem bezárható: %s" -+msgstr "Az értesítés nem zárható be: %s" - - #: ../src/applet/applet.c:598 - msgid "Oops!" -@@ -71,7 +71,7 @@ msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" --"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " - "automatikusan bejelentésre került." - - #: ../src/applet/applet.c:699 -@@ -80,7 +80,7 @@ msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" --"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " - "bejelentésre kerül, amint lesz internetkapcsolat. " - - #: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -@@ -90,8 +90,8 @@ msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" --"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Kérjük vegye " --"fel a kapcsolatot a fejlesztővel, ha szeretné bejelenteni a hibát" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Kérjük vegye " -+"fel a kapcsolatot a fejlesztővel, ha szeretné bejelenteni a hibát." - - #: ../src/applet/applet.c:713 - #, c-format -@@ -99,7 +99,7 @@ msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" --"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Ha szeretne " -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Ha szeretne " - "segíteni a hiba megoldásában, kérjük küldjön egy hibajelentést." - - #: ../src/applet/applet.c:732 -@@ -129,7 +129,7 @@ msgstr "" - #: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "Jelzés nem megjeleníthető: %s" -+msgstr "Az értesítés nem jeleníthető meg: %s" - - #. TODO: Terminate child's process? - #: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 -@@ -140,12 +140,12 @@ msgstr "GIO csatorna nem olvasható: %s" - #: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "GIO csatorna kódolása nem beállítása: %s" -+msgstr "GIO csatorna kódolása nem állítható be: %s" - - #: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "GIO nonblocking módja nem beállítható: %s" -+msgstr "GIO nem blokkoló módja nem állítható be: %s" - - #: ../src/applet/applet.c:1186 - msgid "" -@@ -155,8 +155,7 @@ msgid "" - msgstr "" - "& [-v] [DIR]...\n" - "\n" --"Alkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új " --"probléma történne\n" -+"Alkalmazás, amely értesíti a felhasználót ha hibát észlel az ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" -@@ -164,10 +163,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"A fenti konfigurációs beállítás át lett mozgatva a GSettings-be, és a " -+"kapcsoló hozzá van kötve a „report-technical-problems” beállítás értékéhez, " -+"az „org.gnome.desktop.privacy” sémában." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "A fenti konfigurációs beállítás itt állítható be:" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -203,9 +205,9 @@ msgid "" - "without asking." - msgstr "" - "Az ABRT mappákban tárolja a hibákra vonatkozó adatokat. Amikor az ABRT-nak " --"szüksége van írási jogosultságra a mappát átmozgatja egy bizonyos " --"rendszerbeli helyről a felhasználó mappájába. Ha ez az opció engedélyezett, " --"akkor az ABRT kérdés nélkül elvégzi ezt a műveletet." -+"szüksége van írási jogosultságra, a mappát átmozgatja egy bizonyos " -+"rendszerbeli helyről a felhasználó mappájába. Ha ez a beállítás letiltott, " -+"akkor az ABRT kérdés nélkül elvégzi az átmozgatást." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -214,11 +216,11 @@ msgid "" - "uReport is sent at beginning of reporting process. With this option enabled " - "uReports are sent automatically immediately after problem detection." - msgstr "" --"Az uReport egy rövid és abszolút anoním leírása egy problémának. Az ABRT " --"ezeket az uReportokat használja a gyors és globális duplika azonosításra. " --"Alaphelyzetből az uReport a jelentési folyamat előtt kerül elküldésre. Ezzel " --"az opcióval viszont a uReport-ok kérdés nélkül rögtön a probléma észlelése " --"után kerülnek elküldésre." -+"Az uReport egy rövid és teljesen névtelen leírása egy problémának. Az ABRT " -+"ezeket az uReportokat használja a gyors és globális duplikátum azonosításra. " -+"Alaphelyzetben az uReport a jelentési folyamat előtt kerül elküldésre. Ezzel " -+"a beállítással az uReportok kérdés nélkül, rögtön a probléma észlelése után, " -+"kerülnek elküldésre." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" -@@ -226,35 +228,35 @@ msgid "" - "in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" --"Ha ez az opció engedélyezve van, a jelentési folyamat, amit a probléma " --"értesítő ablakban lévő Jelentés gombbal aktiváltunk - megszakítódik -, " --"miután az uReport elküldésre került. Azonban, az alapértelmezett probléma " --"kereső képes arra, hogy befejezze a jelentést, amit bármikor használhat." -+"Ha ez a beállítás engedélyezett, akkor a jelentési folyamat, amit a probléma " -+"értesítő ablakban lévő „Jelentés” gombbal aktivált, megszakítódik, miután az " -+"uReport elküldésre került. Bármikor használhatja az alapértelmezett probléma " -+"keresőt, hogy befejezze a jelentést." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 - msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" --"Ha ez az opció engedélyezve van, akkor az ABRT sosem jelenít meg egy " --"értesítést a jelentett problémákról. Csak akkor van érteleme, ha a " --"Rövidített jelentés opció be van kapcsolva." -+"Ha ez a beállítás engedélyezett, akkor az ABRT sosem jelenít meg értesítést " -+"a jelentett problémáról. Csak akkor van hatása, ha a „Rövidített jelentés” " -+"beállítás engedélyezett." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" --"Ha ez az opció engedélyezve van, akkor az ABRT mindig korlátozott " --"hozzáféréssel jelenti a hibát, ha az bizalmas adatot tartalmaz." -+"Ha ez a beállítás engedélyezett, akkor az ABRT mindig korlátozott " -+"hozzáféréssel jelenti a hibát, ha az bizalmas adatot tartalmazhat." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "Privát bejegyzés kérése érzékeny információk miatt" -+msgstr "Privát jegy kérése érzékeny információk miatt" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "Jelezze a hiányos problémákat" -+msgstr "Értesítsen a hiányos problémákról" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" -@@ -262,21 +264,21 @@ msgid "" - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" --"Félkész hibákat akkor észlelhetőek, amikor a számítógép épp kikapcsol vagy a " --"felhasználó kiléptetése zajlik. Mivel az ABRT célja, hogy hasznos hiba " --"jelentéseket küldjön, így ezeket nem tudjuk elküldeni." -+"Hiányos hibák akkor észlelhetőek, amikor a számítógép épp kikapcsol, vagy a " -+"felhasználó kijelentkezik. Mivel az ABRT célja, hogy hasznos " -+"hibajelentéseket küldjön, így ezeket nem engedi elküldeni." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Mindig" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Soha" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Kérdezzen" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" -@@ -284,7 +286,7 @@ msgstr "" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "_Kilépés" -+msgstr "_Bezárás" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" -@@ -293,7 +295,7 @@ msgstr "_Alapbeállítások" - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "A hiba bejelentő beállítása" -+msgstr "A hibabejelentő beállítása" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" -@@ -301,21 +303,21 @@ msgstr "Az ABRT rendszerbeállításairól" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "Rólunk" -+msgstr "Névjegy" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" - msgstr "Kilépés" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -324,47 +326,49 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "Probléma könyvtár" -+msgstr "Problématár" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurációs fájl" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "A mappa használata RPM gyökérként" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Menti a konténer metaadatokat" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Gyökérkönyvtár a konténerparancsok futtatásához" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" --msgstr "& [opciók]" -+msgstr "& [beállítások]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" --msgstr "Alkalmazza a NUM számot mint kliens UID-t" -+msgstr "A NUM szám használata, mint kliens UID" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" --msgstr "Jelentés a rendszernaplóba" -+msgstr "Naplózás a rendszernaplóba" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" --msgstr "Programnevek hozzáadása a log-hoz" -+msgstr "Programnevek hozzáadása a naplóhoz" - - #: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" -@@ -373,12 +377,12 @@ msgstr "Ismeretlen hiba" - #: ../src/dbus/abrt-dbus.c:167 - #, c-format - msgid "'%s' is not a valid element name" --msgstr "'%s' nem érvényes elem név" -+msgstr "A(z) „%s” nem érvényes elemnév" - - #: ../src/dbus/abrt-dbus.c:219 - #, c-format - msgid "'%s' is not a valid problem directory" --msgstr "'%s' nem egy érvényes hibamappa" -+msgstr "A(z) „%s” nem érvényes hibamappa" - - #: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 - #: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 -@@ -388,23 +392,23 @@ msgstr "Nincs engedélyezve" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "A probléma nem nyitható meg" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format - msgid "'%s' element can't be modified" --msgstr "'%s' elemek nem módosíthatóak" -+msgstr "A(z) „%s” elem nem módosítható" - - #: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" --"Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " --"logfájljait a további részletekért." -+"A chown parancs végrehajtása a mappán sikertelen. További részletekért " -+"ellenőrizze a rendszernaplót." - - #: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "'%s' mérete nem megállapítható" -+msgstr "A(z) „%s” mérete nem állapítható meg" - - #: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" -@@ -413,7 +417,7 @@ msgstr "Nem maradt hibagyűjtő terület" - #: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "A probléma mappából '%s' nem törölhető '%s'" -+msgstr "A(z) „%s” elem nem törölhető a(z) „%s” probléma mappából" - - #: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 -@@ -422,8 +426,8 @@ msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " --"ezzel a névvel aktív-e vagy sem.\n" -+"A(z) „%s” név elveszett, kérjük elllenőrizze, hogy más szolgáltatás nem épp " -+"ezzel a névvel fut.\n" - - #: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 -@@ -442,24 +446,24 @@ msgid "" - "problem. If you have time and want to help the developers in their effort to " - "sort out this problem, please contact them directly." - msgstr "" --"Hiba adatai nem teljesek. Ez általában akkor történik, amikor " --"hibaérzékeléskor a számítógép leállásra készül, vagy a felhasználó épp kilép." --" A továbbiakban, hogy értékelhető hibajelentéseket tudjon továbbítani, ABRT " --"nem fogja engedni az ilyen hibák továbbítását. Ha mégis úgy érzi ez a " --"probléma megoldása fontos, és segíteni szeretne, lépjen kapcsolatba " --"közvetlenül a fejlesztőkkel." -+"A hiba adatai nem teljesek. Ez általában akkor történik, amikor " -+"hibaérzékeléskor a számítógép leállásra kerül, vagy a felhasználó épp " -+"kijelentkezik. A továbbiakban, hogy hasznos hibajelentéseket tudjon " -+"továbbítani, az ABRT nem fogja engedni az ilyen hibák elküldését. Ha mégis " -+"úgy érzi ez a probléma megoldása fontos, és segíteni szeretne, lépjen " -+"kapcsolatba közvetlenül a fejlesztőkkel." - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "Ne automatizálja" -+msgstr "Ne fusson démonként" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" --msgstr "Jelentés a rendszernaplóba akkor is, ha -d opcióval ellátott" -+msgstr "Naplózás a rendszernaplóba -d beállítással is" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -471,12 +475,13 @@ msgstr "Közvetlen kommunikáció a felhasználóval" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "A nice érték növelése INCREMENT értékkel" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" --msgstr "Nincs szabad dolgozó és tele a buffer. %s archív kihagyásra kerül." -+msgstr "" -+"Nincs szabad dolgozó és tele a puffer. A(z) „%s” archívum kihagyásra kerül." - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -492,24 +497,23 @@ msgstr "" - "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" - "\n" - "\n" --"Figyeli az UPLOAD_DIRECTORY-t és kicsomagolja a bejövő archív anyagokat a " --"bejövő DumpLocation helyyre ami az\n" --"abrt.conf alapján definiált\n" -+"Figyeli az UPLOAD_DIRECTORY könyvtárat és kibontja a bejövő archívumokat\n" -+"a bejövő DumpLocation helyre amit az abrt.conf határoz meg.\n" - "\n" --"Ha UPLOAD_DIRECTORY nincs, a \n" --"WatchCrashdumpArchiveDir opciót alkalmazza az abrt.conf alapján" -+"Ha az UPLOAD_DIRECTORY nincs megadva, akkor a\n" -+"WatchCrashdumpArchiveDir beállítást alkalmazza az abrt.conf fájlból" - - #: ../src/daemon/abrt-upload-watch.c:281 - msgid "Daemize" --msgstr "Démonizálja" -+msgstr "Futtassa démonként" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " -+msgstr "Egyidejűleg elérhető dolgozók. Az alapértelmezés " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " -+msgstr "A gyorsítótár legnagyobb mérete MiB-ban. Az alapértelmezés" - - #: ../src/daemon/abrt-auto-reporting.c:198 - #: ../src/daemon/abrt-auto-reporting.c:206 -@@ -518,44 +522,44 @@ msgstr "& [ " - - #: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Kikapcsolja a hitelesítést" - - #: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "Red Hat támogatás felhasználónév" -+msgstr "Red Hat támogatási felhasználónév" - - #: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" --msgstr "" -+msgstr "Red Hat támogatási jelszó, ha nincs megadva, akkor bekérésre kerül" - - #: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "uReport SSL-tanúsítvány útvonalak vagy tanúsítvány típus" - - #: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "Meg kell adnia az --username beállítást is a --password beállításhoz" - - #: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "Használhatja a --username vagy a --certificate beállítások egyikét" - - #: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "Használhatja a --username vagy a --anonymous beállítások egyikét" - - #: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "Használhatja a --anonymous vagy a --certificate beállítások egyikét" - - #: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" --msgstr "Érvénytelen számú paraméter" -+msgstr "Érvénytelen számú argumentum" - - #: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Ismeretlen opcionális érték: '%s'\n" -+msgstr "Ismeretlen opcionális érték: „%s”\n" - - #: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" -@@ -568,15 +572,15 @@ msgstr "Jelszó megadása nélkül nem folytatható\n" - #. Print only the part before ':' of a string like "username:password" - #: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "HTTP hitelesített automatikus jelentés" - - #: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "SSL kliens hitelesített automatikus jelentés" - - #: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "névtelen automatikus jelentés" - - #: ../src/daemon/abrt-handle-upload.in:135 - #, c-format -@@ -589,78 +593,78 @@ msgid "" - " UPLOAD_DIR - Directory where uploaded archives are stored\n" - " FILENAME - Uploaded archive file name\n" - msgstr "" -+"Használat: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -+"\n" -+" -v - Bőbeszédű\n" -+" -d - Feltöltött archívum törlése\n" -+" ABRT_SPOOL_DIR - A könyvtár ahová az érvényes archívum kibontódnak\n" -+" UPLOAD_DIR - A könyvtár ahol a feltöltött archívumok tárolódnak\n" -+" FILENAME - A feltöltött archívum fájlneve\n" - - #: ../src/daemon/abrt-handle-upload.in:171 - #: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "Nem egy könyvtár: '{0}'" -+msgstr "Nem könyvtár: „{0}”" - - #: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "Átugrás: '{0}' (perjellel kezdődik)" -+msgstr "Átugrás: „{0}” (perjellel kezdődik)" - - #: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "Átugrás: '{0}' (ponttal kezdődik)" -+msgstr "Átugrás: „{0}” (ponttal kezdődik)" - - #: ../src/daemon/abrt-handle-upload.in:183 --#, fuzzy - msgid "Skipping: '{0}' (contains ..)" --msgstr "Átugrás: '{0}' (.. tartalmaz)" -+msgstr "Átugrás: „{0}” (tartalmazza: ..)" - - #: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "Átugrás: '{0}' (szóközt tartalmaz)" -+msgstr "Átugrás: „{0}” (szóközt tartalmaz)" - - #: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "Átugrás: '{0}' (tabulátort tartalmaz)" -+msgstr "Átugrás: „{0}” (tabulátort tartalmaz)" - - #: ../src/daemon/abrt-handle-upload.in:194 --#, fuzzy - msgid "Can't change directory to '{0}'" --msgstr "Sikertelen könyvtár váltás ide: '{0}'" -+msgstr "Nem váltható át a könyvtár ide: „{0}”" - - #: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "Ismeretlen fájltípus: '{0}'" -+msgstr "Ismeretlen fájltípus: „{0}”" - - #: ../src/daemon/abrt-handle-upload.in:210 --#, fuzzy - msgid "Can't create working directory in '{0}'" --msgstr "Munkakönyvtár létrehozása sikertelen itt: '{0}' " -+msgstr "Nem lehet munkakönyvtárat létrehozni itt: „{0}”" - - #: ../src/daemon/abrt-handle-upload.in:221 --#, fuzzy - msgid "Can't move '{0}' to '{1}'" --msgstr "'{0}' nem helyezhető át ide: '{1}'" -+msgstr "A(z) „{0}” nem helyezhető át ide: „{1}”" - - #: ../src/daemon/abrt-handle-upload.in:226 --#, fuzzy - msgid "Can't copy '{0}' to '{1}'" --msgstr "'{0}' nem másolható ide: '{1}'" -+msgstr "A(z) „{0}” nem másolható ide: „{1}”" - - #: ../src/daemon/abrt-handle-upload.in:230 --#, fuzzy - msgid "Verification error on '{0}'" --msgstr "Hitelesítési hiba '{0}'" -+msgstr "Hitelesítési hiba: „{1}”" - - #: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" --msgstr "Kicsomagolás '{0}'" -+msgstr "Kibontás: „{0}”" - - #: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" --msgstr "'{0}' könyvtár létrehozása sikertelen" -+msgstr "A(z) „{0}” könyvtár nem hozható létre" - - #: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" --msgstr "Kicsomagolás sikertelen '{0}'" -+msgstr "A(z) „{0}” nem bontható ki" - - #: ../src/daemon/abrt-handle-upload.in:260 --#, fuzzy - msgid "'{0}' processed successfully" --msgstr "'{0}' feldolgozása sikeres" -+msgstr "A(z) „{0}” sikeresen feldolgozva" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 -@@ -670,12 +674,12 @@ msgstr "Nyomkövetési információk előállítása" - #: ../src/lib/problem_api_dbus.c:42 - #, c-format - msgid "Can't connect to system DBus: %s" --msgstr "Sikertelen csatlakozás a rendszer DBus szolgáltatásához: %s" -+msgstr "Nem lehet kapcsolódni a rendszer DBus szolgáltatásához: %s" - - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "Sikertelen chown '%s': %s" -+msgstr "Sikertelen chown „%s”: %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format -@@ -685,31 +689,32 @@ msgstr "Hibagyüjtő mappa törlése sikertelen: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo metódushívás sikertelen: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "A hibaadatok nem kérhetőek le az abrt-dbus szolgáltatástól" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "Problémák listája em elérhetőek az abrt-dbus szolgáltatásból: %s" -+msgstr "A problémák listája nem kérhető le az abrt-dbus szolgáltatástól: %s" - - #: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 - #, c-format - msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" -+msgstr "A problémaadatok nem kérhetőek le az abrt-dbus szolgáltatástól: %s" - - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -+"Nem tesztelhető az abrt-dbus szolgáltatással, hogy az elem létezik-e: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "'%s' ideiglenes fájl létrehozása sikertelen" -+msgstr "Nem hozható létre a(z) „%s” ideiglenes fájl" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -717,14 +722,16 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"Mentés nem lehetséges ide: '%s'. '%s' probléma nem kerül eltávolításra a " --"figyelmen kívül hagyott problémák közül '%s'" -+"Nem lehet ide menteni: „%s”. A(z) „%s” probléma nem kerül eltávolításra a " -+"figyelmen kívül hagyott problémák közül „%s”" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "Nem átnevezhető '%s' erre '%s'. '%s' probléma eltávolítása sikertelen" -+msgstr "" -+"Nem átnevezhető át a(z) „%s” erre: „%s”. A(z) „%s” probléma eltávolítása " -+"sikertelen" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -733,11 +740,11 @@ msgid "" - "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" - "and identifies crash function in problem directory DIR" - msgstr "" --"& [opciók] -d DIR\n" -+"& [beállítások] -d DIR\n" - "\n" --"Elemzi a C/C++ nyomkövetési adatokat, előállít duplikációs hash fájlokat, " --"nyomkövetési adatminősítést,\n" --"és azonosítja az összeomlott funkciót a hibagyüjtő DIR könyvtárban" -+"Elemzi a C/C++ nyomkövetési adatokat, előállít duplikációs hash fájlokat,\n" -+"nyomkövetési adatminősítést, és azonosítja az összeomlott\n" -+"funkciót a hibagyűjtő DIR könyvtárban" - - #. - #. * The parser failed. Compute the duphash from the executable -@@ -747,11 +754,11 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "%s, nyomkövetési értelmezés sikertelen" -+msgstr "A nyomkövetési értelmezés sikertelen ennél: %s" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" --msgstr "Az összeomlás szálja nem található" -+msgstr "Az összeomlás szála nem található" - - #: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" -@@ -761,27 +768,27 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Kiszámítja és elmenti a DIR hibagyűjtó könyvtárban az összeomlási adatok " -+"Kiszámítja és elmenti a DIR hibagyűjtő könyvtárban az összeomlási adatok " - "UUID-it" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "" -+msgstr "A(z) „%s” összeomlási adatok elemzése" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format - msgid "Missing build id: %s" --msgstr "" -+msgstr "Hiányzó építési azonosító: %s" - - #: ../src/plugins/abrt-action-analyze-core.in:142 - #, c-format - msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" --msgstr "" -+msgstr "Használat: %s [-v] [-o OUTFILE] -c COREFILE" - - #: ../src/plugins/abrt-action-analyze-core.in:164 - msgid "COREFILE is not specified" --msgstr "" -+msgstr "A COREFILE nincs megadva" - - #: ../src/plugins/abrt-action-analyze-oops.c:37 - msgid "" -@@ -791,7 +798,8 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calculates and saves UUID and DUPHASH for oops problem directory DIR" -+"Kiszámolja és elmenti az UUID és DUPHASH értékeket az oops problématár DIR " -+"mappájába" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -809,13 +817,13 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Kiszámolja és elmenti az UUID és DUPHASH értékeit az xorg számára a probléma " --"DIR mappájába" -+"Kiszámolja és elmenti az UUID és DUPHASH értékeket az xorg problématár DIR " -+"mappájába" - - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "Az '%s' modul betöltődött - ne jelentse ezt az ütközést" -+msgstr "Az „%s” modul betöltődött – nem jelenti ezt az összeomlást" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -825,16 +833,16 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Kiszámítja és elmenti a UUID és DUPHASH adatokat a python összeomlási " -+"Kiszámítja és elmenti a UUID és DUPHASH értékeket a python összeomlási " - "adatokból" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" --msgstr "Használata: {0} [-v[v]] [--core=VMCORE]" -+msgstr "Használat: {0} [-v[v]] [--core=VMCORE]" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:79 - msgid "File {0} doesn't exist" --msgstr "Fájl {0} nem létezik" -+msgstr "A(z) „{0}” fájl nem létezik" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" -@@ -848,11 +856,11 @@ msgstr "nem feldolgozható {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "Oops üzenet nem kibontható: '{0}'" -+msgstr "Oops üzenet nem nyerhető ki: „{0}”" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "Oops szöveg sikeresen kibontva" -+msgstr "Oops szöveg sikeresen kinyerve" - - #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" -@@ -860,39 +868,39 @@ msgid "" - "This is most likely not a software problem.\n" - msgstr "" - "A kernelnapló szerint hardver hiba történt.\n" --"Ez valószínűleg nem egy szoftver hiba.\n" -+"Ez valószínűleg nem egy szoftverhiba.\n" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "a(z) „{0}” könyvtár nem nyitható meg" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Problématár hiba: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "A(z) „{0}” termék használva innen: /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "A(z) „{0}” termék használva." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "A(z) „{0}” termékverzió használva." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Ismétlődő „#{0}” bugzilla hiba található" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Nincs bugzilla hiba ezzel: „abrt_hash:{0}”" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Figyelmeztetés: az abrt-bodhi nem támogatja a „Rawhide” termékverziót" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -900,10 +908,10 @@ msgid "" - "\n" - "Analyzes coredump in problem directory DIR, generates and saves backtrace" - msgstr "" --"& [options] -d DIR\n" -+"& [beállítások] -d DIR\n" - "\n" - "Elemzi a összeomlási adatokat a hibagyűjtő DIR mappában, előállítja és " --"elmenti a nyomkovetési adatokat " -+"elmenti a nyomkövetési adatokat " - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 - msgid "Additional debuginfo directories" -@@ -911,7 +919,7 @@ msgstr "További debuginfo mappák" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Killsig küldése GDB-nek ha több mint NUM mp-nél tovább fut" -+msgstr "Kill szignál küldése a GDB-nek, ha több mint NUM másodpercig fut" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -919,9 +927,10 @@ msgstr "Killsig küldése GDB-nek ha több mint NUM mp-nél tovább fut" - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" --msgstr "Nyomkövetési információ előállítva és elmentve, %u byte" -+msgstr "Nyomkövetési információ előállítva és elmentve, %u bájt" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 -+#, fuzzy - msgid "" - "& [-v] [-r] -d DIR\n" - "\n" -@@ -936,7 +945,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 - msgid "Do not hash fingerprints" --msgstr "Ne alkalmazzon hash lenyomatokat" -+msgstr "Ne használjon hash lenyomatokat" - - #. Let user know what's going on - #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 -@@ -945,14 +954,14 @@ msgstr "Nyomkövetési információk előállítása" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 - msgid "Error: GDB did not return any data" --msgstr "Hiba: A GDB nem adott vissza semmilyen adatot" -+msgstr "Hiba: a GDB nem adott vissza semmilyen adatot" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 - #, c-format - msgid "Error: %s" - msgstr "Hiba: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Kilépés felhasználói utasításra" - -@@ -975,7 +984,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -983,35 +995,36 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" --msgstr "Nem megnyitható {0}: {1}" -+msgstr "{0} nem nyitható meg: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 -+#, fuzzy - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "A hibakód referenciák {0}, debuginfo fájlok, {1} nem került telepítésre" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" --msgstr "{0} debuginfo fájlok nincsenek telepítve" -+msgstr "{0} debuginfo fájl nincs telepítve" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Hiányzó igényelt fájlok: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Hiányzó debuginfo fájl: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" --msgstr "MInden debuginfo fájl elérhető" -+msgstr "Minden debuginfo fájl elérhető" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 - msgid "" -@@ -1024,7 +1037,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Nem-interaktív, „Igen” feltételezése minden kérdésnél" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" -@@ -1032,7 +1045,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Csak a megadott fájlok letöltése" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" -@@ -1040,9 +1053,10 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Figyelmen kívül hagyott beállítás" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 -+#, fuzzy - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1053,6 +1067,7 @@ msgstr "" - "elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 -+#, fuzzy - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1076,43 +1091,46 @@ msgstr "" - "FILE fájlok megőriződnek (sosem kerülnek törlésre)." - - #: ../src/plugins/abrt-action-trim-files.c:236 -+#, fuzzy - msgid "Delete whole problem directories" - msgstr "Törölje a teljes hibagyűjtő könyvtáralat" - - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "Ezen a könyvtáron belül törölje az összes fájlt" -+msgstr "Törölje a könyvtáron belüli összes fájlt" - - #: ../src/plugins/abrt-action-trim-files.c:238 - msgid "Preserve this directory" --msgstr "Könyvtár megörzése" -+msgstr "Könyvtár megőrzése" - - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "" -+msgstr "Nem lehet elindítani ezt: „%s”, a hibaüzenet ez volt: „%s”" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "" -+msgstr "A(z) „%s” fájl nem számot tartalmaz" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" --msgstr "" -+msgstr "Használat: %s [-v]" - - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" -+"Nem lehet lekérdezni a jelenlegi munkakönyvtárat, mivel valószínűleg törölve " -+"lett" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "" -+msgstr "Egy hiba már bejelentésre került ezzel a problémával:" - - #: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" --msgstr "" -+msgstr "Az uReport már el lett küldve, nem lesz még egyszer elküldve" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" -@@ -1121,7 +1139,7 @@ msgstr "" - #: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" --msgstr "" -+msgstr "A report-ureport sikertelen, a kilépési kód: %d" - - #: ../src/plugins/abrt-gdb-exploitable:529 - msgid "Signal sent by userspace code" -@@ -1129,59 +1147,59 @@ msgstr "A felhasználói térben levő program jelzést küldött" - - #: ../src/plugins/abrt-gdb-exploitable:533 - msgid "Signal sent by timer/IO/async event" --msgstr "Időzítő / IO / aszinkron általi esemény" -+msgstr "Időzítő / IO / aszinkron esemény által küldött szignál" - - #: ../src/plugins/abrt-gdb-exploitable:541 - msgid "Signal has siginfo.si_code = SI_USER" --msgstr "A jelnek siginfo.si_code = SI_USER tartalma van" -+msgstr "A szignálnak siginfo.si_code = SI_USER tartalma van" - - #: ../src/plugins/abrt-gdb-exploitable:544 - msgid "Signal due to write to closed pipe" --msgstr "Jelzés amiatt, hogy írni próbált a lezárt folyamat-átírányításba" -+msgstr "Lezárt csővezetékbe írás miatti szignál" - - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "Jelzés a billentyűzet által" -+msgstr "Billentyűzet által küldött szignál" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 - msgid "Job control signal sent by kernel" --msgstr "Munkamenet vezérlési jel kiküldve a kernel által" -+msgstr "Kernel által küldött feladatvezérlési szignál" - - #: ../src/plugins/abrt-gdb-exploitable:558 - #: ../src/plugins/abrt-gdb-exploitable:587 - msgid "Signal sent by window resize" --msgstr "Jel kiküldve az ablak átméretezés által" -+msgstr "Ablak átméretezés által küldött szignál" - - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "A jelzés által küldött figyelmeztetés lejárta (N)" -+msgstr "alarm(N) lejárta által küldött szignál" - - #: ../src/plugins/abrt-gdb-exploitable:583 - msgid "Signal due to write to broken pipe" --msgstr "Törött jelzés miatt az átírányításra nem lehet írni" -+msgstr "Törött csővezetékbe írás miatti szignál" - - #: ../src/plugins/abrt-gdb-exploitable:607 - msgid "ABRT signal (abort() was called?)" --msgstr "ABRT jelet (abort() hívtak?)" -+msgstr "ABRT szignál (abort() lett meghívva?)" - - #: ../src/plugins/abrt-gdb-exploitable:616 - msgid "XCPU signal (over CPU time limit)" --msgstr "XCPU jelzés jelzés (a CPU idő limitje túllépve )" -+msgstr "XCPU szignál (a CPU határidő túllépve)" - - #: ../src/plugins/abrt-gdb-exploitable:620 - msgid "XFSZ signal (over file size limit)" --msgstr "XFSZ jelzés (több mint a fájlméret határ)" -+msgstr "XFSZ szignál (a fájlméret határ túllépve)" - - #: ../src/plugins/abrt-gdb-exploitable:624 - msgid "TRAP signal (can be a bug in a debugger/tracer)" --msgstr "TRAP jelzés(a debugger/tracertben lehet egy hiba)" -+msgstr "TRAP szignál (lehet hogy hiba a debuggerben/tracertben)" - - #: ../src/plugins/abrt-gdb-exploitable:628 - msgid "SYS signal (unknown syscall was called?)" --msgstr "SYS jelzés (ismeretlen rendszerhívás kezdeményezve?)" -+msgstr "SYS szignál (ismeretlen rendszerhívás meghívva?)" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" -@@ -1197,11 +1215,11 @@ msgstr "Érvénytelen utasítás (ugrás egy véletlenszerű címre?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" --msgstr "Nem összeomlással kapcsolatos jel" -+msgstr "Nem összeomlással kapcsolatos szignál" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" --msgstr "Verem túlcsordulás" -+msgstr "Veremtúlcsordulás" - - #: ../src/plugins/abrt-gdb-exploitable:656 - msgid "Write to an invalid address" -@@ -1209,7 +1227,7 @@ msgstr "Írás egy érvénytelen címre" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" --msgstr "Szubrutin visszatér egy érvénytelen címre (sérült verem?)" -+msgstr "A szubrutin egy érvénytelen címre tér vissza (sérült verem?)" - - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 -@@ -1220,28 +1238,28 @@ msgstr "Ugrás egy érvénytelen címre" - msgid "" - "Access past the end of mapped file, invalid address, unaligned access, etc" - msgstr "" --"Adjon hozzáférést a hozzárendelt fájlon túl, helytelen címzésekhez, " -+"Adjon hozzáférést a hozzárendelt fájl végén túl, helytelen címzésekhez, " - "rendezetlen hozzáférésekhez, stb." - - #: ../src/plugins/abrt-gdb-exploitable:693 - msgid "Can't get signal no and do exploitability analysis\n" --msgstr "Nincsen jel és így nem lehet kihasználhatósági elemzést készíteni\n" -+msgstr "Nincs szignál és így nem lehet kihasználhatósági elemzést készíteni\n" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "Valószínű összeomlás oka:" -+msgstr "Összeomlás valószínű oka:" - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " --msgstr "Exploit minősítés (0-9 skála)" -+msgstr "Kihasználhatósági minősítés (0-9 skála):" - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "Jelenlegi instrukció:" -+msgstr "Jelenlegi művelet:" - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" --msgstr "A kihasználhatósági elemzés üresen jött \n" -+msgstr "A kihasználhatósági elemzés nem adott eredményt\n" - - #: ../src/plugins/abrt-watch-log.c:142 - msgid "" -@@ -1251,12 +1269,12 @@ msgid "" - msgstr "" - "& [-vs] [-F STR]... FILE PROG [ARGS]\n" - "\n" --"Monitorozza a FILE logfjájlt, és futtassa a PROG programot ha az változik, " -+"Monitorozza a FILE naplófjájlt, és futtassa a PROG programot ha az változik, " - "vagy lecserélődik" - - #: ../src/plugins/abrt-watch-log.c:154 - msgid "Don't run PROG if STRs aren't found" --msgstr "Ne futtassa a PROG ha STR nem található" -+msgstr "Ne futtassa a PROG parancsot, ha STR nem található" - - #: ../src/plugins/abrt-dump-oops.c:77 - msgid "" -@@ -1266,9 +1284,7 @@ msgid "" - msgstr "" - "& [-vusoxm] [-d DIR]/[-D] [FILE] \n" - "\n" --"\n" --"\n" --"Bontsa ki az oppsot okozó fájlt a (standard bemenetre)" -+"Oops kinyerése a FILE fájlból (vagy szabványos bemenetről)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 -@@ -1281,11 +1297,10 @@ msgstr "Talált problémák kiírása a szabványos kimenetre" - #: ../src/plugins/abrt-dump-oops.c:102 - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" --msgstr "" --"Készítsen mindig új mappát DIR mappában minden egyes hibához amit talál" -+msgstr "Készítsen mindig új mappát a DIR mappában, minden egyes talált" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1318,38 +1333,38 @@ msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" - #: ../src/plugins/abrt-dump-oops.c:127 - #: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" --msgstr "" -+msgstr "A reguláris kifejezés fordítása sikertelen" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "A probléma nem frissíthető: nem található oops" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Több oops találva: csak az első feldolgozása" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Nem sikerült minden szükséges információt kinyerni a journald-ből" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1363,59 +1378,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1481,7 +1496,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1662,8 +1677,8 @@ msgstr "A kiszolgáló megtagadta a kérést." - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" --"Az '%s' fájlnak közönséges fájlnak kell lennie, hogy használhassa a Retrace " --"kiszolgálót." -+"A(z) „%s” fájlnak közönséges fájlnak kell lennie, hogy használhassa a " -+"Retrace kiszolgálót." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1679,15 +1694,15 @@ msgstr "A kiszolgáló nem támogatja az xz tömörítésű archívumokat." - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "'%s' kiadás a nyomkövető kiszolgáló által nem támogatott." -+msgstr "A(z) „%s” kiadást nem támogatja a Retrace kiszolgáló." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." --msgstr "A kiszolgáló nem tudja fogadni a kérést." -+msgstr "A kiszolgáló nem tudja kezelni a kérést." - - #: ../src/plugins/abrt-retrace-client.c:600 - msgid "Unknown package sent to Retrace server." --msgstr "Ismeretlen csomagok kerültek elküldésre a nyomkövető szervernek." -+msgstr "Ismeretlen csomag került elküldésre a Retrace kiszolgálóhoz." - - #: ../src/plugins/abrt-retrace-client.c:609 - msgid "Preparing an archive to upload" -@@ -1717,11 +1732,11 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format - msgid "Uploading %d%%\n" --msgstr "Feltöltés %d%%\n" -+msgstr "%d%% feltöltése\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "Sikertelen olvasás a csatornán keresztül" -+msgstr "Sikertelen olvasás a csővezetékből" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format -@@ -1737,45 +1752,44 @@ msgid "" - "Your problem directory is corrupted and can not be processed by the Retrace " - "server." - msgstr "" --"A hibákat tároló könyvtára hibás, és így nem dolgozható fel a nyomkövető " --"kiszolgáló által." -+"A hibatár könyvtár hibás, és a Retrace kiszolgáló nem tudja feldolgozni." - - #: ../src/plugins/abrt-retrace-client.c:769 - msgid "" - "The archive contains malicious files (such as symlinks) and thus can not be " - "processed." - msgstr "" --"Az archív fájl rosszindulatú fájlokat tartalmaz (pl. szimbolikus linkeket) " --"és így ezek a fájlok nem dolgozhatóak fel." -+"Az archívum rosszindulatú fájlokat tartalmaz (pl. szimbolikus linkeket), és " -+"így nem dolgozható fel." - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "Helytelen válasz a kiszolgálótól: hiányzó X-Task-Id." -+msgstr "Érvénytelen válasz a kiszolgálótól: hiányzó X-Task-Id." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." --msgstr "Helytelen válasz a kiszolgálótól: hiányzó X-Task-Password" -+msgstr "Érvénytelen válasz a kiszolgálótól: hiányzó X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" --msgstr "Nyomkövetés előállítása elkezdődött" -+msgstr "Retrace feladat elkezdődött" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format - msgid "Task Id: %s\n" - "Task Password: %s\n" --msgstr "Task Id: %s\n" --"Task Password: %s\n" -+msgstr "Feladatazonosító: %s\n" -+"Feladat jelszó: %s\n" - - #: ../src/plugins/abrt-retrace-client.c:866 - msgid "Invalid response from server: missing X-Task-Status." --msgstr "Helytelen válasz a kiszolgálótól: hiányzó X-Task-Status" -+msgstr "Érvénytelen válasz a kiszolgálótól: hiányzó X-Task-Status." - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format - msgid "Task Status: %s\n" - "%s\n" --msgstr "Task Status: %s\n" -+msgstr "Feladat állapota: %s\n" - "%s\n" - - #: ../src/plugins/abrt-retrace-client.c:909 -@@ -1783,19 +1797,19 @@ msgstr "Task Status: %s\n" - #: ../src/plugins/abrt-retrace-client.c:1053 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d." --msgstr "%d hosszúságú HTTP fejléc küldésekor hiba történt: NSS hiba %d." -+msgstr "%d hosszúságú HTTP fejléc küldése sikertelen: NSS hiba %d." - - #: ../src/plugins/abrt-retrace-client.c:1170 - msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" --"Nyomkövetés sikertelen. Próbálja később és a hiba később is fennáll, kérem " --"jelentse be." -+"Nyomkövetés sikertelen. Próbálja később, és ha a hiba később is fennáll, " -+"kérem jelentse be." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" --msgstr "log a syslog-ba" -+msgstr "naplózás a rendszernaplóba" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" -@@ -1806,8 +1820,8 @@ msgid "" - "do not check whether retrace server is able to process given package before " - "uploading the archive" - msgstr "" --"ne ellenőrizze hogy a nyomkövető szerver képes-e feldolgozni a megadott " --"csomagot vagy sem mielött feltöltené az archívba" -+"ne ellenőrizze, hogy a nyomkövető szerver képes-e feldolgozni a megadott " -+"csomagot, mielőtt feltöltené az archívumot" - - #: ../src/plugins/abrt-retrace-client.c:1224 - msgid "retrace server URL" -@@ -1859,8 +1873,8 @@ msgid "" - "abrt-retrace-client [options]\n" - "Operations: create/status/backtrace/log/batch/exploitable" - msgstr "" --"abrt-retrace-client [opciók]\n" --"Lehetséges parancsok: create/status/backtrace/log/batch/exploitable" -+"abrt-retrace-client [beállítások]\n" -+"Műveletek: create/status/backtrace/log/batch/exploitable" - - #: ../src/plugins/abrt-retrace-client.c:1292 - #: ../src/plugins/abrt-retrace-client.c:1298 -@@ -1964,9 +1978,9 @@ msgid "" - "Scans through ~/.xsession-errors file and saves those lines which contain " - "executable's name. The result is saved as 'xsession_errors' element." - msgstr "" --"átnézi a ~/.xsession-errors fájl hibáit, és elmenti azokat a sorokat amelyek " --"tartalmazzák a végrehajtó nevét. Az eredmény 'xsession-errors' néven kerül " --"mentésre. " -+"átnézi a ~/.xsession-errors fájlt, és elmenti azokat a sorokat amelyek " -+"tartalmazzák a végrehajtható fájl nevét. Az eredmény „xsession-errors” " -+"elemként kerül mentésre. " - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." -@@ -1975,45 +1989,45 @@ msgstr "Hiba történt a kiszolgálói oldalon." - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "Kiszolgáló oldai hiba történt itt: '%s'" -+msgstr "Kiszolgáló oldali hiba történt itt: „%s”" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" --msgstr "Hiba történt a kiszolgálóra való kapcsolódáskor." -+msgstr "Hiba történt a kiszolgálóhoz kapcsolódáskor" - - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "Hiba történt kapcsolódáskor itt: '%s'" -+msgstr "Hiba történt az ide kapcsolódáskor: „%s”" - - #: ../src/plugins/https-utils.c:97 - #, c-format - msgid "Issuer certificate is invalid: '%s'." --msgstr "Kibocsájtó aláírása érvénytelen: '%s'." -+msgstr "A kibocsátó aláírása érvénytelen: „%s”." - - #: ../src/plugins/https-utils.c:100 - #, c-format - msgid "Certificate is signed by an untrusted issuer: '%s'." --msgstr "Az aláírás egy nem megbízható kibocsájtótól származik: '%s'." -+msgstr "Az aláírás egy nem megbízható kibocsátótól származik: „%s”." - - #: ../src/plugins/https-utils.c:103 - #, c-format - msgid "Certificate subject name '%s' does not match target host name '%s'." --msgstr "Az aláírás neve '%s' nem egyezik a cél hoszt nevével '%s'." -+msgstr "Az aláírás „%s” alanya nem egyezik a cél „%s” gépnevével." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." --msgstr "A távoli aláírás érvénytelen." -+msgstr "A távoli aláírás lejárt." - - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "Kibocsájtó aláírása nem felismerhető: '%s'." -+msgstr "A kibocsátó aláírása nem ismerhető fel: „%s”." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "Rossz hitelesítés érkezett. Tárgy '%s', kibocsájtó '%s'." -+msgstr "Rossz tanúsítvány érkezett. „%s” alany, „%s” kibocsátó." - - #: ../src/plugins/https-utils.c:149 - #, c-format -diff --git a/po/ia.po b/po/ia.po -index 4eabf14..b007bd4 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: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/ia/)\n" - "Language: ia\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -259,15 +259,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -278,43 +278,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "File de configuration" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registrar in syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adder nomines de programma in registro" - -@@ -843,7 +843,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Exito al commando del usator" - -@@ -866,7 +866,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -874,32 +877,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1152,7 +1155,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1195,28 +1198,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1230,59 +1233,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1348,7 +1351,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/id.po b/po/id.po -index 38f9d34..4c1fb87 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -8,48 +8,49 @@ - # Jiří Moskovčák , 2011 - # Muhammad Panji , 2012 - # Prima Yogi Loviniltra , 2012 -+# Ferdi Saptanera , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\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-03-15 04:27-0400\n" -+"Last-Translator: Ferdi Saptanera \n" - "Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/id/)\n" - "Language: id\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Permasalahan ketika melaporkan" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Lihat dan laporkan kerusakan aplikasi" - - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "Tidak bisa mengambil kepemilikan '%s'" - - #: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "" -+msgstr "Tidak bisa membuka direktori untuk menulis '%s'" - - #: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" --msgstr "" -+msgstr "Tidak bisa menutup notifikasi '%s'" - - #: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Ups!" - - #: ../src/applet/applet.c:616 - msgid "Report" -@@ -57,7 +58,7 @@ msgstr "Laporan" - - #: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Jalankan ulang" - - #: ../src/applet/applet.c:694 - #, c-format -@@ -65,6 +66,8 @@ msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Kami mohon maaf, sepertinya %s rusak. Permasalahan tersebut sudah dilaporkan " -+"secara otomatis." - - #: ../src/applet/applet.c:699 - #, c-format -@@ -72,6 +75,8 @@ msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Kami mohon maaf, sepertinya %s rusak. Permasalahan tersebut akan dilaporkan " -+"ketika sambungan internet tersedia." - - #: ../src/applet/applet.c:705 ../src/applet/applet.c:719 - #: ../src/applet/applet.c:747 -@@ -80,6 +85,8 @@ msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Kami mohon maaf, sepertinya %s rusak. Mohon hubungi pengembang jika Anda " -+"ingin melaporkan isu tersebut." - - #: ../src/applet/applet.c:713 - #, c-format -@@ -87,45 +94,53 @@ msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Kami mohon maaf, sepertinya %s rusak. Jika Anda ingin membantu menyelesaikan " -+"isunya, mohon kirimkan laporan." - - #: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Kami mohon maaf, sepertinya permasalahan muncul di sebuah komponen. " -+"Permasalahan tersebut telah dilaporkan secara otomatis." - - #: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Kami mohon maaf, sepertinya permasalahan muncul di sebuah komponen. " -+"Permasalahan tersebut akan dilaporkan ketika sambungan internet tersedia." - - #: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Kami mohon maaf, sepertinya permasalahan muncul di sebuah komponen. Jika " -+"Anda ingin membantu menyelesaikan isunya, mohon kirimkan laporan." - - #: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "Tidak bisa menampilkan notifikasi: '%s'" - - #. TODO: Terminate child's process? - #: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "" -+msgstr "Tidak bisa membaca dari saluran gio: '%s'" - - #: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "" -+msgstr "Tidak bisa menyetel encoding pada kanal gio: %s" - - #: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "" -+msgstr "Tidak bisa menyalakan modus nonblocking untuk kanal gio: %s" - - #: ../src/applet/applet.c:1186 - msgid "" -@@ -133,6 +148,10 @@ msgid "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"& [-v] [DIR]...\n" -+"\n" -+"Applet yang memberitahu pengguna ketika permasalahan baru terdeteksi oleh " -+"ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" -@@ -140,22 +159,25 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Pilihan konfigurasi di atas telah dipindahkan ke GSettings dan saklar " -+"tersebut terhubung ke nilai pengaturan 'report-technical-problems' dari " -+"skema 'org.gnome.desktop.privacy'" - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Pilihan konfigurasi di atas bisa dikonfigurasi di" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Tanya sebelum mencuri direktori" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Secara otomatis mengirimkan Laporan" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "Pelaporan yang diperpendek" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" -@@ -262,15 +284,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -281,43 +303,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Direktori masalah" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Berkas konfigurasi" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Catat ke syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Menambahkan nama program untuk log" - -@@ -846,7 +868,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Keluar dari perintah pengguna" - -@@ -869,7 +891,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -877,32 +902,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1155,7 +1180,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1196,28 +1221,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1231,59 +1256,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1349,7 +1374,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/it.po b/po/it.po -index 41d3d18..78b8bf3 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -21,7 +21,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -31,7 +31,7 @@ msgstr "" - "language/it/)\n" - "Language: it\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -305,15 +305,15 @@ msgstr "Informazioni" - msgid "Quit" - msgstr "Esci" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -324,43 +324,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Directory del problema" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "File di configurazione" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opzioni]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Utilizzare NUM per l'uid del client" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log su syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Aggiungi i nomi dei programmi sul log" - -@@ -987,7 +987,7 @@ msgstr "Errore: GDB non ha restituito alcun dato" - msgid "Error: %s" - msgstr "Errore: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Uscita su comando utente" - -@@ -1010,7 +1010,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1018,33 +1021,33 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Impossibile aprire {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Riferimenti Coredump {0} file debuginfo, {1} di loro non è stato installato" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} dei file debuginfo non sono stati installati" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "File richiesto mancante: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "File debuginfo mancante: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Tutti i file contenenti le informazioni di debug sono disponibili" - -@@ -1325,7 +1328,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Crea una nuova directory del problema in DIR per ogni oops rilevato" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1367,28 +1370,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1402,59 +1405,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1520,7 +1523,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/ja.po b/po/ja.po -index 4a59702..25516a7 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -17,21 +17,22 @@ - # carrotsoft , 2011, 2012 - # Noriko Mizumoto , 2015. #zanata - # Ooyama Yosiyuki , 2015. #zanata -+# Noriko Mizumoto , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-08-23 07:49-0400\n" --"Last-Translator: Ooyama Yosiyuki \n" -+"PO-Revision-Date: 2016-03-03 02:16-0500\n" -+"Last-Translator: Noriko Mizumoto \n" - "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ja/)\n" - "Language: ja\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -151,6 +152,8 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"上記の設定は GSettings に移動しているためスイッチがスキーマ 'org.gnome.desktop.privacy' から設定 'report-" -+"technical-problems' の値にリンクされています。" - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" -@@ -182,6 +185,11 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"時間と領域の両方が必要とされるスタックトレースの生成動作にはコアダンプファイルが必要とされます。ABRT " -+"はコアダンプからスタックトレースを生成するサービスを提供しています。ただしユーザーによるサービスへのコアダンプのアップロードが必要になります。'常にアップロードする' " -+"オプションを使用すると指示をしなくてもコアダンプが常に ABRT によりアップロードされるようになります。'アップロードしない' " -+"オプションを使うとスタックトレースは常にローカルで生成されるようになります。'指示を求める' " -+"オプションを使用すると常にユーザーの指示を求めるようになります。" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -228,7 +236,7 @@ msgstr "このオプションを有効にすると、ABRT は報告された問 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." --msgstr "" -+msgstr "このオプションを使用すると、機密データが検出された場合には常に制限付きアクセスでバグチケットを作成させることができるようになります。" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:11 -@@ -252,19 +260,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "常にアップロードする" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "アップロードしない" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "指示を求める" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "バックトレース生成用コアダンプをアップロードする" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -291,15 +299,18 @@ msgstr "ABRT について" - msgid "Quit" - msgstr "終了" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"パッケージのデータベースに問い合わせを行いパッケージとコンポーネント名を保存します" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -310,43 +321,45 @@ msgstr "" - msgid "Problem directory" - msgstr "問題ディレクトリ" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "設定ファイル" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "このディレクトリーを RPM root として使用する" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"コンテナーのメタデータを保存します" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "コンテナーコマンドの実行用 root ディレクトリー" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [オプション]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM をクライアントの uid として使用する" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog にログする" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ログにプログラム名を追加する" - -@@ -372,7 +385,7 @@ msgstr "権限がありません" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "問題を開けません" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -435,7 +448,7 @@ msgstr "-d オプションを使用するとログを syslog へ書き込みま - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -447,7 +460,7 @@ msgstr "ユーザーと直接通信する" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "INCREMENT で nice 値の増加させる" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -690,11 +703,11 @@ msgstr "問題ディレクトリの削除に失敗しました: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo メソッドの呼び出しに失敗しました: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "abrt-dbus から問題データを取得できません" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -806,6 +819,7 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"バックトレースには報告すべき意味のある関数フレームが含まれていません。煩わしいですが必ずしもコンピューターに問題があるわけではありません。バグ追跡システムでレポートを作成することはできませんが、メールでカーネル管理者への問い合わせを行うことはできます。" - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -866,35 +880,35 @@ msgstr "カーネルログではハードウェア関連のエラーが検出さ - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "問題ディレクトリー '{0}' を開けません" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr " 問題ディレクトリーにエラーが発生しました: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "/etc/os-release からの製品 '{0}' を使用しています。" - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "製品 {0} を使用しています。" - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "製品バージョン {0} を使用しています。" - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "重複している bugzilla バグ '#{0}' が見つかりました" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "'abrt_hash:{0}' の bugzilla バグはありません。" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "警告: abrt-bodhi は製品バージョン 'Rawhide' には対応していません" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -949,7 +963,7 @@ msgstr "エラー: GDB から何もデータが返されませんでした" - msgid "Error: %s" - msgstr "エラー: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ユーザーからのコマンドで終了しています" - -@@ -972,7 +986,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -980,32 +997,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} を開けません: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "コアダンプにより {0} debuginfo ファイルが参照されます、このうち {1} ファイルがインストールされていません" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo ファイルがインストールされていません" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "要求されたファイルがありません: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo ファイルがありません: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "すべての debuginfo ファイルが利用可能です" - -@@ -1278,7 +1295,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリを作成します" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1320,28 +1337,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1355,59 +1372,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "検出されるコアダンプごと DIR 内に新規の問題ディレクトリを作成します" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "systemd-journal を開けません" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "ジャーナルの最後までシークできません" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1473,7 +1490,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -2340,15 +2357,15 @@ msgstr "" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "この" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "最後の" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "{} 問題は C/C++ タイプではないためデバッグ情報をインストールできません" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" -diff --git a/po/ka.po b/po/ka.po -index 76c2da6..62c8c55 100644 ---- a/po/ka.po -+++ b/po/ka.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/ka/)\n" - "Language: ka\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -258,15 +258,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -277,43 +277,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "კონფიგურაციის ფაილი" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "ჟურნალირება syslog-ში" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -842,7 +842,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -865,7 +865,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -873,32 +876,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1151,7 +1154,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1192,28 +1195,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1227,59 +1230,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1345,7 +1348,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/km.po b/po/km.po -index ab7a684..f9818b0 100644 ---- a/po/km.po -+++ b/po/km.po -@@ -1,17 +1,19 @@ - # Leap Sok , 2015. #zanata -+# Jakub Filak , 2016. #zanata -+# Senghong Soeng , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-11-01 12:29-0400\n" --"Last-Translator: Leap Sok \n" -+"PO-Revision-Date: 2016-07-14 05:43-0400\n" -+"Last-Translator: Jakub Filak \n" - "Language-Team: Khmer\n" - "Language: km\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - "Plural-Forms: nplurals=1; plural=0\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 -@@ -55,7 +57,7 @@ msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" --"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"យើងសូមទោស, កម្មវិធី​ %s ដូចជាបានគាំង។ " - "បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" - - #: ../src/applet/applet.c:699 -@@ -64,7 +66,7 @@ msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" --"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"យើងសូមទោស, កម្មវិធី​%sដូចជាបានគាំង។ " - "បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" - - #: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -@@ -74,7 +76,7 @@ msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" --"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"យើងសូមទោស, កម្មវិធី​ %s ដូចជាបានគាំង។ " - "សូមទាក់ទងអ្នកបង្កើតកម្មវិធីបើអ្នកចង់រាយការណ៍ពីបញ្ហានេះ។" - - #: ../src/applet/applet.c:713 -@@ -83,7 +85,7 @@ msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" --"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " -+"យើងសូមទោស, កម្មវិធី​ %s ដូចជាបានគាំង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " - "សូមផ្ញើរបាយការណ៍។" - - #: ../src/applet/applet.c:732 -@@ -137,6 +139,8 @@ msgid "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"& [-v] [DIR]...\n" -+"\n" - "Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 -@@ -145,10 +149,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"ជម្រើសនៃការកំណត់ខាងលើត្រូវបានប្ដូរទៅកាន់ GSettings " -+"ហើយការផ្លាស់ប្ដូរនេះគឺត្រូវបានភ្ជាប់តម្លៃនៃការកំណត់ទៅកាន់ ' report-technical-" -+"problems ' ចេញពីគ្រោងការណ៍ចាស់ 'org.gnome.desktop.privacy'" - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "ជម្រើសនៃការកំណត់ខាងលើនេះអាចត្រូវបានកំណត់នៅខាងក្នុង" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -213,11 +220,11 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "" -+msgstr "ស្នើរសំុលិខិតឯកជនសំរាប់ព័ត៌មានដែលងាយនឹងលេចធ្លាយ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "" -+msgstr "ជូនដំណឹង! មានបញ្ហាខ្លះមិនទាន់បានបញ្ចប់ពេញលេញ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" -@@ -225,30 +232,34 @@ msgid "" - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" -+"បញ្ហាខ្លះមិនទាន់បានបញ្ចប់ពេញលេញត្រូវបានស្វែងរកឃើញនៅពេលដែលកំុព្យូទ័រកំពុងបិតដំណើរការ​ " -+"រឺ អ្នកប្រើប្រាស់កំពុងតែចាកចេញពីគណនី។ " -+"ដើម្បីផ្ដល់របាយការណ៍នៃបញ្ហាដ៏មានតម្លៃទាំងអស់នេះ,​ ABRT​ " -+"នឹងមិនអនុញ្ញាត្តឲ្យអ្នកទទួលយកបញ្ហាទាំងអស់នេះទេ។" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "តែងតែ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "មិនដែល" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "សួរ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "ដាក់បញ្ចូល coredump សំរាប់ជំនាន់ backtrace" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_បិទ" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "" -+msgstr "_លក្ខណ:ដើម" - - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 -@@ -257,25 +268,25 @@ msgstr "" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "" -+msgstr "អំពីប្រព័ន្ធកំណត់នៃ ABRT" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "" -+msgstr "អំពី" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" --msgstr "" -+msgstr "បញ្ឈប់" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -284,45 +295,45 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "" -+msgstr "បញ្ហាទីតាំងផ្ទុកឯកសារ" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" --msgstr "" -+msgstr "ឯកសារដែលបានកំណត់រូច" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "ប្រើទីតាំងផ្ទុកឯកសារនេះឲ្យដូចជា RPM root" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -851,7 +862,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -874,7 +885,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -882,32 +896,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1160,7 +1174,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1201,28 +1215,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1236,59 +1250,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1354,7 +1368,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/kn.po b/po/kn.po -index a202a7f..1ea20de 100644 ---- a/po/kn.po -+++ b/po/kn.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/kn/)\n" - "Language: kn\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -289,15 +289,15 @@ msgstr "ಕುರಿತು" - msgid "Quit" - msgstr "ನಿರ್ಗಮಿಸು" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -308,43 +308,43 @@ msgstr "" - msgid "Problem directory" - msgstr "ತೊಂದರೆಯ ಕೋಶ" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "ಸಂರಚನಾ ಕಡತ" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ಆಯ್ಕೆಗಳು]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ಗೆ ದಾಖಲಿಸು" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು ದಾಖಲೆಗೆ ಸೇರಿಸು" - -@@ -969,7 +969,7 @@ msgstr "ದೋಷ: GDB ಯು ಯಾವುದೆ ದತ್ತಾಂಶವನ್ - msgid "Error: %s" - msgstr "ದೋಷ: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ಬಳಕೆದಾರರ ಆಜ್ಞೆಯ ಮೇರೆಗೆ ನಿರ್ಗಮಿಸಲಾಗುತ್ತಿದೆ" - -@@ -992,7 +992,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1000,34 +1003,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} ಅನ್ನು ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "{0} debuginfo ಕಡತಗಳನ್ನು Coredump ಉಲ್ಲೇಖಿಸುತ್ತದೆ, ಅವುಗಳಲ್ಲಿ {1} ಅನ್ನು " - "ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo ಕಡತಗಳನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗುತ್ತದೆ" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "ಮನವಿ ಮಾಡಲಾದ ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - -@@ -1310,7 +1313,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಹೊಸ ತೊಂದರೆ ಕೋಶವನ್ನು ರಚಿಸು" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1353,28 +1356,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1388,59 +1391,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1506,7 +1509,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/ko.po b/po/ko.po -index ab62425..9c87bb3 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/ko/)\n" - "Language: ko\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -291,7 +291,7 @@ msgstr "ABRT에 대해 " - msgid "Quit" - msgstr "종료 " - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -301,8 +301,8 @@ msgstr "" - "\n" - "패키지 데이터베이스를 쿼리하고 패키지 및 구성요소의 이름을 저장합니다." - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -313,15 +313,15 @@ msgstr "" - msgid "Problem directory" - msgstr "문제가 있는 디렉토리 " - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "설정 파일 " - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "이 디렉토리를 RPM Root로 사용합니다." - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -329,29 +329,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "저장소의 메타데이터를 저장합니다." - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "저장소 명령을 실행하기 위한 루트 디렉토리" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM을 클라이언트 uid로 사용 " - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog에 로그 " - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "로그에 프로그램 이름 추가 " - -@@ -955,7 +955,7 @@ msgstr "오류: GDB에서 아무 데이터도 반화되지 않았습니다 " - msgid "Error: %s" - msgstr "오류: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "사용자 명령을 종료합니다 " - -@@ -978,64 +978,45 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"사용법: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" \n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"TMPDIR을 임시 준비 영역으로 사용하여 CASHEDIR에 BUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 " --"설치합니다. \n" --"CACHEDIR에 있는 오래된 파일은 SIZE보다 작게될 때 까지 삭제됩니다.\n" --"\n" --"/etc/abrt/plugins/CCpp.conf 로부터 설정을 읽어들입니다.\n" --"\n" --" -v 대화식으로 실행합니다.\n" --" -y 비 대화식으로, 모든 옵션에 대해 '예'라고 가정합니다.\n" --" --ids 기본ID: build_id들\n" --" --tmpdir 기본위치: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" --" --cache 기본위치: /var/cache/abrt-di\n" --" --size_mb 기본크기: 4096\n" --" --pkgmgr 기본: PackageManager from CCpp.conf or 'dnf'\n" --" -e,--exact 지정된 파일만 다운로드 합니다.\n" --" --repo 리포지터리 검색시 사용할 규칙\n" --" 기본: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0}을(를) 열 수 없음: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "코어 덤프는 {0} debuginfo 파일을 참조합니다. 이중 {1}이 설치되지 않았습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo 파일이 설치되어 있지 않습니다 " - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "CCpp 애드온의 잘못된 설정, 지원되지 않는 패키지 관리자 : '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "요청된 파일이 누락되어 있습니다: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo 파일이 누락되어 있습니다: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "모든 debuginfo 파일이 사용 가능합니다" - -@@ -1337,7 +1318,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 생성 " - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1381,28 +1362,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "journald로부터 필요한 모든 정보를 얻는데 실패했습니다." - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "abrt 데이터베이스에 문제 감지 데이터를 저장하는데에 실패했습니다." - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1416,59 +1397,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "모든 코어덤프에 대해 DIR에 새로운 문제 디렉토리를 생성" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "CURSOR의 위치에서 systemd-journal을 읽기 시작" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "뒤에서 부터 systemd-journal을 읽기 시작 " - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "-t INT와 같이, INT는 plugins/CCpp.conf에 정의되어 있습니다." - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "-c CURSOR 또는 -e 중 하나를 지정해야 합니다." - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "systemd-journal을 열 수 없습니다." - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1534,7 +1515,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/lt.po b/po/lt.po -index caf1761..1518fbc 100644 ---- a/po/lt.po -+++ b/po/lt.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "Language: lt\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "(n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -264,15 +264,15 @@ msgstr "Apie" - msgid "Quit" - msgstr "Išeiti" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -283,43 +283,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemų katalogas" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigūracijos failas" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [parinktys]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Naudoti NUM kaip kliento uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Įrašyti į syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Pridėti programų pavadinimus žurnalizavimui" - -@@ -891,7 +891,7 @@ msgstr "Klaida: GDB negrąžino jokių duomenų" - msgid "Error: %s" - msgstr "Klaida: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Išeinamas dėl naudotojo komandos" - -@@ -914,7 +914,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -922,34 +925,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Nepavyko atverti {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Pagrindo išklotinės nurodo {0} derinimo informacijos failus, {1} iš jų " - "neįdiegti" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} neįdiegtų derinimo informacijos failų" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Trūksta prašomo failo: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Trūksta derinimo informacijos failo: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Yra visi derinimo informacijos failai" - -@@ -1221,7 +1224,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai oops" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1262,28 +1265,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1297,59 +1300,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1415,7 +1418,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/lv.po b/po/lv.po -index fd0d22d..e1429c7 100644 ---- a/po/lv.po -+++ b/po/lv.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "Language: lv\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " - "2);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -259,15 +259,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -278,43 +278,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurācijas datne" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [iespējas]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -843,7 +843,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -866,7 +866,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -874,32 +877,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1152,7 +1155,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1193,28 +1196,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1228,59 +1231,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1346,7 +1349,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/ml.po b/po/ml.po -index 19da90a..9de49d2 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -6,21 +6,22 @@ - # Ani Peter , 2012-2013 - # Jiří Moskovčák , 2011 - # Ani Peter , 2015. #zanata -+# Naveej Ahamed , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-09-25 05:50-0400\n" --"Last-Translator: Ani Peter \n" -+"PO-Revision-Date: 2016-04-05 01:47-0400\n" -+"Last-Translator: Naveej Ahamed \n" - "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ml/)\n" - "Language: ml\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - #, fuzzy -@@ -58,7 +59,6 @@ msgstr "റിപോര്‍ട്ട്" - - # auto translated by TM merge from project: ibus, version: head, DocId: ibus10 - #: ../src/applet/applet.c:625 --#, fuzzy - msgid "Restart" - msgstr "വീണ്ടും ആരംഭിക്കുക" - -@@ -301,15 +301,15 @@ msgstr "സംബന്ധിച്ചു്" - msgid "Quit" - msgstr "പുറത്തു് കടക്കുക" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -320,43 +320,43 @@ msgstr "" - msgid "Problem directory" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "ക്രമീകരണ ഫയല്‍" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "ക്ലയന്റ് യുഐഡി ആയി NUM ഉപയോഗിയ്ക്കുക" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന്റെ പേരുകള്‍ ചേര്‍ക്കുക" - -@@ -1003,7 +1003,7 @@ msgstr "പിശക്: ജിഡിബി ഒരു ഡേറ്റയും - msgid "Error: %s" - msgstr "പിശക്: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ഉപയോക്താവിന്റെ കമാന്‍ഡില്‍ പുറത്തു് കടക്കുന്നു" - -@@ -1026,7 +1026,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1034,36 +1037,36 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0}: {1} തുറക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "കോര്‍ഡംപ് {0} debuginfo ഫയലുകള്‍ സൂചിപ്പിയ്ക്കുന്നു, അവയില്‍ {1} " - "ഇന്‍സ്റ്റോള്‍ ചെയ്തിട്ടില്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "debuginfo ഫയലുകളുടെ {0} ഇന്‍സ്റ്റോള്‍ ചെയ്തിട്ടില്ല" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "ലഭ്യമല്ലാത്ത ആവശ്യപ്പെട്ട ഫയല്‍: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo ഫയല്‍ ലഭ്യമല്ല: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "എല്ലാ debuginfo ഫയലുകളും ലഭ്യമാണു്" - -@@ -1348,7 +1351,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1394,28 +1397,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1429,59 +1432,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1547,7 +1550,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/mr.po b/po/mr.po -index badba91..e2d6308 100644 ---- a/po/mr.po -+++ b/po/mr.po -@@ -6,29 +6,30 @@ - # Jiří Moskovčák , 2011 - # sandeeps , 2011-2012 - # sandeeps , 2011,2013-2014 -+# Pravin Satpute , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\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-04-27 02:56-0400\n" -+"Last-Translator: Pravin Satpute \n" - "Language-Team: Marathi (http://www.transifex.com/projects/p/fedora-abrt/" - "language/mr/)\n" - "Language: mr\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "रिपोर्टकरत आहे" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "ऍप्लिकेशन क्रॅश पहा व कळवा" - - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format -@@ -282,15 +283,15 @@ msgstr "विषयी" - msgid "Quit" - msgstr "बाहेर पडा" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -301,43 +302,43 @@ msgstr "" - msgid "Problem directory" - msgstr "प्रॉब्लेम डिरेक्ट्री" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "संरचना फाइल" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM चा क्लाएंट uid म्हणून वापर करा" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog करीता लॉग" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "लॉगमध्ये कार्यक्रम नावे समाविष्ट करा" - -@@ -950,7 +951,7 @@ msgstr "त्रुटी: GDB ने कोणताही डाटा पु - msgid "Error: %s" - msgstr "त्रुटी: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "वापरकर्ता आदेश आढळल्यावर बाहेर पडते" - -@@ -973,7 +974,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -981,34 +985,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0}: {1} उघडणे अशक्य" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "कोरडम्प {0} debuginfo फाइल्स् करीता संदर्भ पुरवतो, त्यापैकी {1} प्रतिष्ठापीत " - "नाही" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo फाइल्स इंस्टॉल केले जात नाही" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "विनंतीकृत फाइल: {0} आढळली नाही" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "debuginfo फाइल: {0} आढळली नाही" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "सर्व debuginfo फाइल्स् उपलब्ध आहे" - -@@ -1285,7 +1289,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "प्रत्येक ऊप्सकरीता DIR मधील नवीन प्रॉबलेम डिरेक्ट्रि निर्माण करा" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1329,28 +1333,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1364,59 +1368,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1482,7 +1486,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/nb.po b/po/nb.po -index 30f520e..3813637 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "abrt/language/nb/)\n" - "Language: nb\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -263,15 +263,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -282,43 +282,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurasjonsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [alternativer]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logg til syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Legg til programnavn i loggen" - -@@ -847,7 +847,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Avslutt med brukerkommando" - -@@ -870,7 +870,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -878,32 +881,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1156,7 +1159,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1197,28 +1200,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1232,59 +1235,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1350,7 +1353,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/nds.po b/po/nds.po -index 8f3c2e7..2fa85c0 100644 ---- a/po/nds.po -+++ b/po/nds.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/nds/)\n" - "Language: nds\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -258,15 +258,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -277,43 +277,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -842,7 +842,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -865,7 +865,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -873,32 +876,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1151,7 +1154,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1192,28 +1195,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1227,59 +1230,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1345,7 +1348,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/nl.po b/po/nl.po -index 5f486a9..690dcc6 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -8,21 +8,23 @@ - # Richard E. van der Luit , 2012 - # Geert Warrink , 2014. #zanata - # Geert Warrink , 2015. #zanata -+# Geert Warrink , 2016. #zanata -+# Richard E. van der Luit , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-10-16 10:28-0400\n" -+"PO-Revision-Date: 2016-04-06 12:21-0400\n" - "Last-Translator: Geert Warrink \n" - "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" - "language/nl/)\n" - "Language: nl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -57,7 +59,7 @@ msgstr "Rapport" - - #: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "Opnieuw starten" -+msgstr "Herstarten" - - #: ../src/applet/applet.c:694 - #, c-format -@@ -158,10 +160,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"De configuratie optie hierboven is verplaatst naar GSettings en de " -+"schakelaar wordt gelinkt naar de waarde van de instelling 'report-technical-" -+"problems' uit het schema 'org.gnome.desktop.privacy'." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "De configuratie optie heirboven kan ingesteld worden in" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -188,6 +193,13 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Het coredumpbestand is nodig voor het genereren van de stack trace wat een " -+"tijd en ruimte in beslag nemende bewerking is. ABRT biedt een service die de " -+"stack trace genereert van de coredump maar je moet de coredump uploaden naar " -+"deze service. Met de optie 'Altijd' zal ABRT de cordeump altijd zonder te " -+"vragen uploaden. Met de optie 'Nooit' zal de stack trace altijd lokaal " -+"gegenereerd worden. Net de optie 'Vragen' zal ABRT het altijd aan de " -+"gebruiker vragen." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -262,19 +274,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Altijd" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Nooit" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Vragen" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Upload coredump voor backtrace generatie" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -301,7 +313,7 @@ msgstr "Over" - msgid "Quit" - msgstr "Verlaten" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -311,8 +323,8 @@ msgstr "" - "\n" - "Bevraag pakketdatabase en sla pakket en onderdeel naam op" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -323,15 +335,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Probleemmap" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Configuratiebestand" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Gebruik deze map als RPM root" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -339,29 +351,29 @@ msgstr "& [-v] -d MAP\n" - "\n" - "Sla container metadata op" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Root map voor het uitvoeren van container commando's" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opties]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Gebruik NUM as cliënt uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Loggen naar syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Voeg programmanamen toe aan de log" - -@@ -387,7 +399,7 @@ msgstr "Niet geauthoriseerd" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Kan het probleem niet openen" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -458,7 +470,7 @@ msgstr "Loggen naar syslog zelfs met -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n STAP] -e|--event EVENT MAP..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -470,7 +482,7 @@ msgstr "Communiceer rechtstreeks met de gebruiker" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Verhoog de nice waarde met STAP" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -685,11 +697,11 @@ msgstr "Verwijderen probleemmap mislukt: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo methode aanroep mislukte: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Kan geen probleemdata krijgen van abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -866,35 +878,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "kan probleemmap '{0}' niet openen" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Probleemmap fout: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Product '{0}' uit /etc/os-release wordt gebruikt." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Product {0} wordt gebruikt." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Productversie {0} wordt gebruikt." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Er werd een dubbele bugzilla bug '#{0}' gevonden" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Er is geen bugzilla bug met 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Waarschuwing: abrt-bodhi ondersteunt productversie 'Rawhide' niet" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -951,7 +963,7 @@ msgstr "Fout: GDB gaf geen data terug" - msgid "Error: %s" - msgstr "Fout: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Verlaten op gebruikerscommando" - -@@ -974,66 +986,46 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Gebruik: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPMAP] [--cache=CACHEMAP[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=GROOTTE]\n" --" [-e, --exact=PAD[:PAD]...]\n" --"\n" --"Installeert debuginfo voor alle build-ids getoond in BUILD_IDS_FILE\n" --"in CACHEDIR, met gebruik van TMPDIR als tijdelijk gebied.\n" --"Oude bestanden in CACHEDIR worden verwijderd totdat het kleiner is dan " --"GROOTE.\n" --"\n" --"Leest configuratie uit /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Breedsprakig\n" --" -y Niet-interactief, neem 'Ja' voor alle vragen\n" --" --ids Standaard: build_ids\n" --" --tmpdir Standaard: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Standaard: /var/cache/abrt-di\n" --" --size_mb Standaard: 4096\n" --" --pkgmgr Standaard: PackageManager uit CCpp.conf of 'dnf'\n" --" -e,--exact Download alleen gespecificeerde bestanden\n" --" --repo Patroon te gebruiken voor het zoeken naar repos.\n" --" Standaard: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Kan niet openen {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump refereert naar {0} debuginfo-bestanden, {1} ervan zijn niet " - "geïnstalleerd" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo-bestanden zijn niet geïnstalleerd" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Ongeldige cofiguratie van CCpp addon, niet-ondersteunde Pakketmanager: '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Ontbrekend gevraagd bestand: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Ontbrekend debuginfo-bestand: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Alle debuginfo-bestanden zijn beschikbaar" - -@@ -1045,26 +1037,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PAD[:PAD]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installeert debuginfo pakketten voor alle build-ids opgesomd in " -+"BUILD_IDS_FILE\n" -+"in de ABRT systeem cache." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Niet-interactief, neemt 'Ja' aan voor alle vragen" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- betekent STDIN, standaard: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Download alleen gespecificeerde bestanden" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Patroon te gebruiken voor het zoeken naar repos, standaard: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Genegeerde optie" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1307,7 +1305,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Maak nieuwe probleem map aan in MAP voor elke gevonden oops" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1344,34 +1342,34 @@ msgstr "Reguliere expressie kon niet gecompileerd worden" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Kan het probleem niet vernieuwen: geen oops gevonden" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Meerdere oopses gevonden: bewerk alleen de eerste" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Verkrijgen van alle vereiste informatie van journald mislukte" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Herhalende crash wordt niet opgeslagen na %ds keer (limiet is %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Opslaan gedetecteerde probleemdata in abrt database mislukte" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Kan de systemd-journal waarneming niet initialiseren" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1398,60 +1396,60 @@ msgstr "" - "\n" - "De laatst bekeken positie wordt opgeslagen in " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Maak nieuwe probleemmap aan in MAP voor elke coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Begin met lezen van systemd-journal op de CURSOR positie" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Begin met lezen van systemd-journal vanaf het einde" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Beperk het aanmaken van probleemmappen tot 1 per INT seconde" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Zelfde als -t INT, INT wordt gespecificeerd in plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Volg systemd-journal vanaf de laatst bekeken positie (indien beschikbaar)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Je moet -c CURSOR of -e specificeren" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Kan systemd-journal niet openen" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Kan systemd-journal niet filteren naar alleen systemd-coredump data" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Kan niet zoeken tot aan het end van het journaal" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1518,7 +1516,7 @@ msgstr "Starten van waarneming vanaf cursor '%s' mislukte" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Ontleden van backtrace uit journaal mislukte" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1530,7 +1528,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1541,25 +1539,29 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Print gevonden crasht naar standaard output" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" --msgstr "" -+msgstr "Maak nieuwe probleemmap aan in MAP voor elke gevonden crash" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Journaalfilter bijv. '_COMM=gdm-x-session' (mag meerdere keren opgegeven " -+"worden)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Journaalfilter moet opgegeven worden met parameter -j of opgeslagen zijn in " -+"het /etc/abrt/plugins/xorg.conf bestand" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Kan systemd-journal niet filteren naar alleen Xorg data" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1581,7 +1583,7 @@ msgstr "Maak probleem map aan in MAP voor elke gevonden crash" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Ontleden van backtrace van het logbestand mislukte" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -2277,7 +2279,7 @@ msgstr "'%s' identificeert meer dan een probleemmap" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Gebruik: abrt-cli [--authenticate] [--version] COMMANDO [MAP]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2379,12 +2381,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Kan probleem '%s' niet vinden" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Probleem '%s' kan niet gerapporteerd worden" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2429,114 +2431,118 @@ msgstr "Selecteert alleen problemen die na het tijdstempel gedetecteerd zijn." - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Probleem heeft geen backtrace" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Het natrekken proces starten?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Toon backtrace van een probleem" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Deze" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Laatste" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" - msgstr "" -+"{} probleem is niet van het type C/C++. Kan debuginfo niet installeren" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Toesteming geweigerd: '{}'\n" -+"Als dit een systeemprobleem is probeer dan dit commando als root uit te " -+"voeren" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Installeer vereiste debuginfo voor het gegeven problem" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Voer GDB uit voor een probleem" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Outputformaat" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Ingebouwd outputformaat" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Geen problemen" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Toon problemen" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Print informatie uit over het probleem" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Vraag voor het verwijderen" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Vraag niet voor het verwijderen" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Weet je zeker dat je dit probleem wilt verwijderen?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Verwijderd" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Verwijder probleem" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Rapporteer probleem" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Voer lokaat natrekken uit" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Voer natrekken op afstand uit met gebruik van natrek server" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Forceer natrekken zelfs als de backtrace al bestaat" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Het probleem heeft al een backtrace" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Voer abrt natrekken uit met -f/--force om opnieuw na te trekken" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Backtrace tonen?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Voor dit probleemtype is natrekken niet mogelijk" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2545,42 +2551,47 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Upload core dump en natrekken op afstasnd uitvoeren? (Het kan gevoelige data " -+"bevatten). Als je antwoord 'Nee' is, zal lokaal een stack trace gegenereerd " -+"worden. Lokaal natrekken vereist het downloaden van een potentieel grote " -+"hoeveelheid debuginfo data" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Natrekken op afstand" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Lokaal natrekken" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Genereer backtrace uit coredump" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT heeft {} problem(en) ontdekt. Voor meer info voer je abrt list{} uit" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Print telling van de recente crashes" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Authenticeer en toon alle problemen op deze machine" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Geen overeenkomende problem(en)" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Dubbelzinnig opgegeven overeenkomst resulteert in meerdere problemen:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Niet rapporteerbaar" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/or.po b/po/or.po -index 7e64244..39b4de9 100644 ---- a/po/or.po -+++ b/po/or.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "language/or/)\n" - "Language: or\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -294,15 +294,15 @@ msgstr "ବିବରଣୀ" - msgid "Quit" - msgstr "ବିଦାୟ ନିଅନ୍ତୁ" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -313,43 +313,43 @@ msgstr "" - msgid "Problem directory" - msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "କନଫିଗରେସନ ଫାଇଲ" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ବିକଳ୍ପଗୁଡିକ]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM କୁ କ୍ଲାଏଣ୍ଟ uid ଭାବରେ ବ୍ୟବହାର କରନ୍ତୁ" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ପାଇଁ ଲଗ" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯୋଗ କରନ୍ତୁ" - -@@ -970,7 +970,7 @@ msgstr "ତୃଟି: GDB କୌଣସି ତଥ୍ୟ ଫେରାଇ ନଥି - msgid "Error: %s" - msgstr "ତ୍ରୁଟି: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ଚାଳକ ନିର୍ଦ୍ଦେଶ ଉପରେ ପ୍ରସ୍ଥାନ କରୁଅଛି" - -@@ -993,7 +993,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1001,34 +1004,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0}କୁ ଖୋଲି ପାରିବେ ନାହିଁ:{1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "କୋରଡମ୍ପ ସନ୍ଦର୍ଭ {0} ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ, ସେମାନଙ୍କ ମଧ୍ଯରୁ {1} ସ୍ଥାପିତ " - "ହୋଇନାହିଁ" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "ତୃଟି ନିବାରଣ ଫାଇଲଗୁଡ଼ିକର {0} ସ୍ଥାପିତ ହୋଇନଥାଏ" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "ଅନୁରୋଧ କରାଯାଇଥିବା ଫାଇଲ ଅନୁପସ୍ଥିତ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "ଅନୁପସ୍ଥିତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "ସମସ୍ତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ଉପଲବ୍ଧ" - -@@ -1310,7 +1313,7 @@ msgstr "" - "DIR ରେ ମିଳିଥିବା ପ୍ରତ୍ୟେକ oops ପାଇଁ ନୂତନ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1353,28 +1356,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1388,59 +1391,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1506,7 +1509,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/pa.po b/po/pa.po -index 15a960a..604b5af 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +23,7 @@ msgstr "" - "abrt/language/pa/)\n" - "Language: pa\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -271,15 +271,15 @@ msgstr "ਬਾਰੇ" - msgid "Quit" - msgstr "ਨਿੱਕਲੋ" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -290,43 +290,43 @@ msgstr "" - msgid "Problem directory" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ਚੋਣਾਂ]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM ਨੂੰ ਕਲਾਂਈਟ uid ਤੌਰ ਤੇ ਵਰਤੋ" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ਵਿੱਚ ਲਾਗ ਕਰੋ" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" - -@@ -909,7 +909,7 @@ msgstr "ਗਲਤੀ: GDB ਨੇ ਕੋਈ ਡਾਟਾ ਵਾਪਿਸ ਨਹ - msgid "Error: %s" - msgstr "ਗਲਤੀ: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "ਉਪਭੋਗੀ ਕਮਾਂਡ ਬੰਦ ਕਰ ਰਿਹਾ ਹੈ" - -@@ -932,7 +932,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -940,34 +943,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕਦਾ: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "ਕੋਰਡੰਪ ਹਵਾਲਾ {0} debuginfo ਫਾਇਲਾਂ, ਉਹਨਾਂ ਵਿੱਚੋਂ {1} ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "debuginfo ਦੀਆਂ {0} ਫਾਈਲਾਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹੋਈਆਂ ਹਨ" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "ਬੇਨਤੀ ਕੀਤੀ ਗੁੰਮ ਫਾਈਲ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "ਗੈਰ-ਮੌਜੂਦ debuginfo ਫਾਇਲ: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "ਸਭ debuginfo ਫਾਇਲਾਂ ਉਪਲੱਬਧ ਹਨ" - -@@ -1239,7 +1242,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1280,28 +1283,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1315,59 +1318,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1433,7 +1436,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/pl.po b/po/pl.po -index e68bfe1..777a7ca 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -5,23 +5,24 @@ - # Translators: - # Jiří Moskovčák , 2011 - # Piotr Drąg , 2011-2014 --# Piotr Drąg , 2015. #zanata -+# Piotr Drąg , 2015. #zanata -+# Piotr Drąg , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-08-28 12:31-0400\n" --"Last-Translator: Piotr Drąg \n" -+"PO-Revision-Date: 2016-07-14 05:06-0400\n" -+"Last-Translator: Piotr Drąg \n" - "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/pl/)\n" - "Language: pl\n" - "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " - "|| n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -153,10 +154,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Powyższa opcja konfiguracji została przeniesiona do GSettings, a przełącznik " -+"jest powiązany z wartością ustawienia „report-technical-problems” ze " -+"schematu „org.gnome.desktop.privacy”." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Powyższa opcja konfiguracji może zostać skonfigurowana w" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -183,6 +187,12 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest " -+"działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może " -+"tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut " -+"do usługi. Opcja „Zawsze” powoduje wysyłanie zrzutów core bez pytania. Opcja " -+"„Nigdy” powoduje lokalne tworzenie wyjątków stosu. Opcja „Pytanie” powoduje " -+"pytanie użytkownika za każdym razem." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -257,19 +267,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Zawsze" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Nigdy" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Pytanie" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Wyślij zrzut core do utworzenia wyjątku" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -296,7 +306,7 @@ msgstr "O programie" - msgid "Quit" - msgstr "Zakończ" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -306,8 +316,8 @@ msgstr "" - "\n" - "Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -318,15 +328,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Katalog problemu" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Plik konfiguracji" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Używa tego katalogu jako katalogu głównego pakietu RPM" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -334,29 +344,29 @@ msgstr "& [-v] -d KATALOG\n" - "\n" - "Zapisuje metadane kontenera" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Katalog główny do wykonywania poleceń kontenera" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcje]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Używa NUMERU jako UID klienta" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Przekazuje komunikaty do dziennika systemowego" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Dodaje nazwy programów do dziennika" - -@@ -382,7 +392,7 @@ msgstr "Brak upoważnienia" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Nie można otworzyć problemu" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -453,7 +463,7 @@ msgstr "" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n ZWIĘKSZENIE] -e|--event KATALOG ZDARZENIA…" - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -465,7 +475,7 @@ msgstr "Komunikuje się bezpośrednio z użytkownikiem" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Zwiększa wartość nice o ZWIĘKSZENIE" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -696,11 +706,11 @@ msgstr "Usunięcie katalogu problemu się nie powiodło: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Wywołanie metody „GetInfo” usługi D-Bus się nie powiodło: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Nie można uzyskać danych problemu z abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -878,35 +888,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "nie można otworzyć katalogu problemu „{0}”" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Błąd katalogu problemu: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Używanie produktu „{0}” z pliku /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Używanie produktu {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Używanie wersji produktu {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Odnaleziono podwójny błąd w Bugzilli „#{0}”" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Nie ma błędu w Bugzilli z sumą „abrt_hash:{0}”" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Ostrzeżenie: abrt-bodhi nie obsługuje wersji produktu „Rawhide”" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -963,7 +973,7 @@ msgstr "Błąd: GDB nie zwrócił żadnych danych" - msgid "Error: %s" - msgstr "Błąd: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Wyłączanie na polecenie użytkownika" - -@@ -986,7 +996,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1012,43 +1025,46 @@ msgstr "" - " --ids Domyślnie: identyfikatory_budowania\n" - " --tmpdir Domyślnie: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "LOSOWY_PRZYROSTEK\n" --" --cache Domyślnie: /var/cache/abrt-di\n" -+" --cache Lista katalogów rozdzielanych dwukropkiem. Pierwszy jest " -+"używany\n" -+" do zapisywania zainstalowanych pakietów debuginfo.\n" -+" Domyślnie: /var/cache/abrt-di\n" - " --size_mb Domyślnie: 4096\n" - " --pkgmgr Domyślnie: „PackageManager” z pliku CCpp.conf lub „dnf”\n" - " -e,--exact Pobiera tylko podane pliki\n" - " --repo Wzorzec do użycia podczas wyszukiwania repozytoriów.\n" - " Domyślnie: *debug*\n" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Nie można otworzyć {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Zrzut core odnosi się do plików debuginfo {0}, {1} z nich nie jest " - "zainstalowanych" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} plików debuginfo nie jest zainstalowanych" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Nieprawidłowa konfiguracja dodatku CCpp, nieobsługiwany menedżer pakietów: " - "„%s”" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Brak żądanego pliku: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Brak pliku debuginfo: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Wszystkie pliki debuginfo są dostępne" - -@@ -1060,26 +1076,31 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i PLIK_IDENTYFIKATORÓW_BUDOWANIA|-i -] [-e ŚCIEŻKA[:ŚCIEŻKA]…]\n" -+"\t[-r REPOZYTORIUM]\n" -+"\n" -+"Instaluje pakiety debuginfo dla wszystkich PLIKÓW_IDENTYFIKATORÓW_BUDOWANIA\n" -+"w systemowej pamięci podręcznej ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Nieinteraktywnie, odpowiada „Tak” na wszystkie pytania" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- oznacza STANDARDOWE_WEJŚCIE, domyślnie: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Pobiera tylko podane pliki" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Wzór używany podczas wyszukiwania repozytoriów, domyślnie: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Ignorowana opcja" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1323,7 +1344,7 @@ msgstr "" - "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii oops" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1359,38 +1380,38 @@ msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Nie można zaktualizować problemu: nie odnaleziono awarii oops" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Odnaleziono więcej awarii oops: przetwarzanie tylko pierwszej" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - "Uzyskanie wszystkich wymaganych informacji z journald się nie powiodło" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - "Bez zapisywania powtarzających się awarii po %ds (ograniczenie wynosi %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - "Zapisanie wykrytych danych problemu w bazie danych programu ABRT się nie " - "powiodło" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Zainicjowanie obserwacji systemd-journal się nie powiodło" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1410,38 +1431,38 @@ msgstr "" - "Opcje -c i -e są w konflikcie, ponieważ obie określają pierwszy odczytany " - "komunikat.\n" - "\n" --"Opcja -e jest przydatna tylko razem z opcją -f, poniważ podążanie za " -+"Opcja -e jest przydatna tylko razem z opcją -f, ponieważ podążanie za " - "dziennikiem zaczyna\n" - "się od odczytania całego dziennika, jeśli ostatnio widziane położenie jest " - "niedostępne.\n" - "\n" - "Ostatnio widziane położenie jest zapisywane w " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Tworzy nowy katalog problemu w KATALOGU dla każdego zrzutu core" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Rozpoczyna odczytywanie systemd-journal z położenia KURSORA" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Rozpoczyna odczytywanie systemd-journal od końca" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Przełącza tworzenie katalogów problemów na jeden na INT sekundę" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "To samo, co -t INT, INT jest określone w pliku plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" -@@ -1449,29 +1470,29 @@ msgstr "" - "Podąża za systemd-journal od ostatnio widzianego położenia (jeśli jest " - "dostępne)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Należy podać -c KURSOR lub -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Nie można otworzyć systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Nie można filtrować tylko danych systemd-coredump z systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Nie można przejść do końca dziennika" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1503,7 +1524,7 @@ msgstr "" - "Opcje -c i -e są w konflikcie, ponieważ obie określają pierwszy odczytany " - "komunikat.\n" - "\n" --"Opcja -e jest przydatna tylko razem z opcją -f, poniważ podążanie za " -+"Opcja -e jest przydatna tylko razem z opcją -f, ponieważ podążanie za " - "dziennikiem zaczyna\n" - "się od odczytania całego dziennika, jeśli ostatnio widziane położenie jest " - "niedostępne.\n" -@@ -1538,7 +1559,7 @@ msgstr "Rozpoczęcie obserwacji od kursora „%s” się nie powiodło" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Przetworzenie wyjątku z dziennika się nie powiodło" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1550,7 +1571,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1558,28 +1579,48 @@ msgid "" - "parameter\n" - "-j or in %s conf file.\n" - msgstr "" -+"& [-vsoxtf] [-e]/[-c KURSOR] [-d KATALOG]/[-D]\n" -+"\n" -+"Wydobywa awarię Xorg z systemd-journal\n" -+"\n" -+"Opcje -c i -e są w konflikcie, ponieważ obie określają pierwszy odczytany " -+"komunikat.\n" -+"\n" -+"Opcja -e jest przydatna tylko razem z opcją -f, ponieważ podążanie za " -+"dziennikiem zaczyna\n" -+"się od odczytania całego dziennika, jeśli ostatnio widziane położenie jest " -+"niedostępne.\n" -+"\n" -+"Ostatnio widziane położenie jest zapisywane w %s\n" -+"\n" -+"Filtr dziennika jest wymaganym parametrem i musi być podawany przez parametr\n" -+"-j lub w pliku konfiguracji %s.\n" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Wyświetla odnalezione awarie w standardowym wyjściu" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Filtr dziennika, tzn. „_COMM=gdm-x-session” (może być podawany wiele razy)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Filtr dziennika musi być podawany przez parametr -j lub przechowywany w " -+"pliku /etc/abrt/plugins/xorg.conf" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Nie można filtrować tylko danych Xorg z systemd-journal" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1602,7 +1643,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Przetworzenie wyjątku z pliku dziennika się nie powiodło" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -2297,7 +2338,7 @@ msgstr "„%s” określa więcej niż jeden katalog problemu" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Użycie: abrt-cli [--authenticate] [--version] POLECENIE [KATALOG]…" - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2395,12 +2436,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Nie można odnaleźć problemu „%s”" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Nie można zgłosić problemu „%s”" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2443,114 +2484,121 @@ msgstr "Wybiera tylko problemy wykryte po podanym czasie" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Problem nie posiada wyjątku" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Rozpocząć ponowne śledzenie procesu?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Wyświetla wyjątek problemu" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Ten" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Ostatni" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" - msgstr "" -+"Problem {} nie jest typu C/C++. Nie można zainstalować pakietu debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Brak uprawnień: „{}”\n" -+"Jeśli to problem systemowy, to można spróbować wykonać to polecenie jako " -+"root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Instaluje wymagane pakiety debuginfo dla podanego problemu" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Uruchamia GDB dla problemu" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Format wyjściowy" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Wbudowany format wyjściowy" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Brak problemów" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Wyświetla listę problemów" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Wyświetla informacje o problemie" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Pytanie przed usuwaniem" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Bez pytania przed usuwaniem" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Na pewno usunąć ten problem?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Usunięto" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Usuwa problem" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Zgłasza problem" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Wykonuje lokalne ponowne śledzenie" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" - msgstr "" -+"Wykonuje zdalne ponowne śledzenie za pomocą serwera ponownego śledzenia" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Wymusza ponowne śledzenie nawet, jeśli wyjątek już istnieje" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Problem już posiada wyjątek" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" - msgstr "" -+"Należy wykonać „abrt retrace” z opcją -f/--force, aby wykonać ponowne " -+"śledzenie" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Wyświetlić wyjątek?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Brak możliwości ponownego śledzenia dla tego typu problemu" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2559,42 +2607,48 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Wysłać zrzut core i wykonać ponowne śledzenie (może on zawierać prywatne " -+"dane)? Jeśli wybrana zostanie odpowiedź „nie”, to wyjątek stosu zostanie " -+"utworzony lokalnie. Może to spowodować pobranie dużej ilości danych " -+"debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Zdalne ponowne śledzenie" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Lokalne ponowne śledzenie" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Tworzy wyjątek ze zrzutu core" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"Program ABRT wykrył {} problemy. Więcej informacji po wykonaniu polecenia: " -+"abrt-cli list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Wyświetla liczbę ostatnich awarii" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Uwierzytelnia i wyświetla wszystkie problemy na tym komputerze" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Brak pasujących problemów" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Niejednoznaczne zapytanie pasuje do wielu problemów:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Nie można zgłosić" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/pt.po b/po/pt.po -index 91c18d3..82caa8d 100644 ---- a/po/pt.po -+++ b/po/pt.po -@@ -17,7 +17,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -27,7 +27,7 @@ msgstr "" - "language/pt/)\n" - "Language: pt\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -281,15 +281,15 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Sair" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -300,43 +300,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Diretoria de Problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Ficheiro de Configuração" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opções]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Utilizar NUM como uid do cliente" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registar no syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adicionar nomes de programa ao registo" - -@@ -895,7 +895,7 @@ msgstr "" - msgid "Error: %s" - msgstr "Erro: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "A sair por comando do utilizador" - -@@ -918,7 +918,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -926,35 +929,35 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Não é possível abrir {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - #, fuzzy - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "O coredump referencia {0} ficheiros debuginfo, {1} deles não estão " - "instalados" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Ficheiro da informação de depuração em falta: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Estão disponíveis todos os ficheiros da informação de depuração" - -@@ -1218,7 +1221,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1261,28 +1264,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1296,59 +1299,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1414,7 +1417,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/pt_BR.po b/po/pt_BR.po -index a34f711..f129ef6 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -20,23 +20,22 @@ - # Taylon Silmer , 2011 - # Teseu , 2011 - # Vitor Lobo Ramos , 2014 --# Gcintra , 2015. #zanata --# Jonatas Z. de Vasconcellos , 2015. #zanata -+# Daniel Lara , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-23 11:51-0400\n" --"Last-Translator: Jonatas Z. de Vasconcellos \n" -+"PO-Revision-Date: 2016-03-31 09:07-0400\n" -+"Last-Translator: Andrea \n" - "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" - "fedora-abrt/language/pt_BR/)\n" - "Language: pt-BR\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -171,10 +170,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"A opção de configuração acima foi movida para GSettings e a opção está " -+"ligada ao valor da configuração 'report-technical-problems' do schema 'org." -+"gnome.desktop.privacy'." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "A opção de configuração acima pode ser configurado em" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -201,6 +203,12 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"O arquivo coredump é necessário para gerar rastreamento de pilha que é uma " -+"operação que consome tempo e espaço. O ABRT oferece um serviço que gera o " -+"rastreamento de pilha do coredump, mas você deve carregar o coredump para " -+"este serviço. A opção 'Sempre' ABRT irá carregar o coredump automaticamente. " -+" A opção 'Nunca' gera o rastreamento de pilha sempre localmente. A opção " -+"'Perguntar' ABRT irá sempre perguntar ao usuário." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -272,19 +280,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Sempre" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Nunca" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Perguntar" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Upload coredump para gerar análise do problema" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -311,15 +319,18 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Sair" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Consulte banco de dados do pacote e salve pacote e nome de componente" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -330,43 +341,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Diretório do problema" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Arquivo de Configuração" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Utilize este diretório como RPM raiz" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Salve o contâinere metadados" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Diretório raiz para executar comandos de contêineres" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Utilize o NUM como uid de cliente" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log para o syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adicionar os nomes dos programas ao log" - -@@ -392,7 +405,7 @@ msgstr "Não Autorizado" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Não é possível abrir o problema" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -463,7 +476,7 @@ msgstr "Registrar no syslog mesmo com o -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -475,7 +488,7 @@ msgstr "Comunicar diretamente com o usuário" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Incrementar o valor do nice por INCREMENTO" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -538,7 +551,7 @@ msgstr "" - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra - #: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" -+msgstr "Caminhos de certificado ou tipo de certificado do uReport SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra - #: ../src/daemon/abrt-auto-reporting.c:252 -@@ -649,7 +662,7 @@ msgstr "Pulando: '{0}' (contém aba)" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Não foi possível modificar o diretóri para '{0}'" -+msgstr "Não foi possível modificar o diretório para '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-handle-upload.in:205 -@@ -719,11 +732,11 @@ msgstr "Remoção do diretório problema falhou: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Falhou a chamada ao método D-Bus GetInfo falhou: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Não é possível obter os dados de problema a partir do abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -738,7 +751,7 @@ msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Não foi possível testar se o elemento existe no abrt-dbust: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -837,6 +850,11 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"O backtrace não contém quadros funcionais significativos suficientes para " -+"serem relatados. É irritante, porém não significa necessariamente um " -+"problema com seu computador . ABRT não permitirá que você crie um relatório " -+"em um sistema de acompanhamento de bug, mas você pode contactar os " -+"responsáveis pelo kernel via e-mail." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -898,35 +916,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "não foi possível abrir o diretório problema '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Erro do diretório problema: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Utilizando produto '{0}' de /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Utilizando produto {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Utilizando versão do produto {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Bugzilla bug duplicado '#{0}' foi encontrado" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Não há bugzilla bug com 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Aviso: abrt-bodhi não suporta a versão do Produto 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -984,7 +1002,7 @@ msgstr "Erro: GDB não retornou nenhum dado" - msgid "Error: %s" - msgstr "Erro: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Saindo no comando do usuário" - -@@ -1007,7 +1025,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1015,34 +1036,35 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Não é possível abrir {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Referências do coredump {0} arquivos de debuginfo, {1} deles não foi " - "instalado" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} o debuginfo não estão instalados" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"Configuração inválida de CCpp addon, gerenciador de Pacote sem suporte: '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Faltando o arquivo solicitado: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Faltando arquivo debuginfo: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Todos os arquivos debuginfo estão disponíveis." - -@@ -1054,26 +1076,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Instalar pacotes do debuginfo para todos os build-ids listados no " -+"BUILD_IDS_FILE para o cache do sistema\n" -+"ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Não interativo, assume-se que 'Sim' para todas as perguntas" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- significa STDIN, padrão: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Baixar somente arquivos especificados" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Modelo a utilizar quando buscar repos, padrão: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Opção ignorada" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1157,7 +1185,7 @@ msgstr "uReport já foi enviado, não será enviado novamente" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "Adicionando usuário à Lista CC de Bugzilla bug existente." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1325,7 +1353,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Crie novo diretório de problema no DIR para todos os oops encontrados" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1363,34 +1391,34 @@ msgstr "Falha ao compilar o regex" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Não foi possível atualizar o problema: nenhum oops encontrado" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Mais oopses encontrados: processar somente o primeiro" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Falha ao obter todas as informações necessárias do journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Não é possível salvar travamentos repetidos após %ds (limite é %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "Falha ao salvar os dados do problema detectado no banco de dados abrt" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "Falha ao inicializar inspeção ao systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1403,70 +1431,83 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrai coredumps do systemd-journal\n" -+"\n" -+"Opções -c e -e conflitam pois ambas especificam a primeira mensagem lida. \n" -+"\n" -+"-e é útil somente para -f pois o seguinte do journal inicia por ler \n" -+"o journal completo se a última posição vista não estiver disponível.\n" -+"\n" -+"A última posição vista está salva em " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "Criar um novo diretório de problema no DIR para cada coredump." - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "Inicia leitura do systemd-journal da posição do CURSOR" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "Inicia leitura do systemd-journal a partir do final " - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Regula a criação de diretório de problema para 1 por INT segundo" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Igual a -t INT, INT está especificado em plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" -+"Acompanhar systemd-journal a partir da última posição vista (se disponível) " - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "Você precisa especificar ou CURSOR - c ou -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "Não foi possível abrir o systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" -+"Não foi possível filtrar systemd-journal somente para dados do systemd-" -+"coredump " - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "Falha ao procurar o final do journal" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "Falha ao definir cursor do systemd-journal '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 - #: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "Não foi possível ler os dados do journal." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1481,36 +1522,47 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extrai oops do systemd-journal\n" -+"\n" -+"Opções -c e -e conflitam pois ambas especificam a primeira mensagem lida. \n" -+"\n" -+"-e é útil somente para -f pois o seguinte do journal inicia por ler \n" -+"o journal completo se a última posição vista não estiver disponível. \n" -+"\n" -+"A última posição vista está salva em " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 - #: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Ler arquivos do journal de todas as máquinas" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 - #: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Ler todos os arquivos do journal do diretório em PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 - #: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Não foi possível iniciar systemd-journal no diretório '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" -+"Não foi possível filtrar systemd-journal somente para dados do kernel " - - #: ../src/plugins/abrt-dump-journal-oops.c:300 - #: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "" -+msgstr "Falha ao iniciar observação do cursor '%s'" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Falha ao analisar Backtrace do journal " - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1522,7 +1574,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1533,25 +1585,31 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Exibir falhas encontradas no resultado padrão" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Criar novo diretório de problema no DIR para todos os travamentos " -+"encontrados" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Exemplo de filtro de journal '_COMM=gdm-x-session' (pode ser fornecido " -+"várias vezes)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Filtro de journal deve ser especificado ou pelo parâmetro -j ou armazenado " -+"no arquivo /etc/abrt/plugins/xorg.conf " - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Não foi possível filtrar systemd-journal somente para dados Xorg. " - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1574,63 +1632,75 @@ msgstr "" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Falha ao analisar Backtrace do arquivo de log " - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "" -+msgstr "Não foi possível salvar posição de observação do journal " - - #: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" -+"Não foi possível salvar a posição de observação do journal: abra ('%s')" - - #. Only notice because this is expected - #: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" -+"Não foi possível restaurar a posição de observação do journal: arquivo '%s' " -+"não existe" - - #: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" -+"Não foi possível restaurar a posição de observação do journal a partir do " -+"arquivo '%s'" - - #: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" -+"Não foi possível restaurar a posição de observação do journal: o caminho " -+"'%s' não é um arquivo normal" - - #: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" -+"Não foi possível restaurar a posição de observação do journal: arquivo '%s' " -+"excede limite de tamanho %dB " - - #: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" -+"Não foi possível restaurar a posição de observação do journal: abra ('%s')" - - #: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -+"Não foi possível restaurar a posição de observação do journal: não é " -+"possível ler o arquivo '%s' completo" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "" -+msgstr "Falha ao mover o journal para um cursor do arquivo '%s'" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." - msgstr "" --"A servidor de retraçamento não pode ser usado, por causa que o travamento é " --"muito grande. Tente um retraçamento local." -+"A servidor retrace não pode ser usado, porque o travamento é muito grande. " -+"Tente um retraçamento local." - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -@@ -1639,7 +1709,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " --msgstr "Impossível criar o arquivo tenporario em " -+msgstr "Impossível criar o arquivo temporário em " - - #: ../src/plugins/abrt-retrace-client.c:131 - #: ../src/plugins/abrt-retrace-client.c:168 -@@ -1710,6 +1780,8 @@ msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." - msgstr "" -+"O tamanho de seu travamento é %s, porém o servidor retrace aceita somente " -+"travamentos menores ou iguais a %s." - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." -@@ -1738,11 +1810,13 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" -+"O tamanho de seu arquivo é %s, porém o servidor retrace aceita somente " -+"arquivos menores ou iguais a %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "Você vai carregar %s. Continuar?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" -@@ -1777,7 +1851,7 @@ msgid "" - "server." - msgstr "" - "Seu diretório de problemas está corrompido e não pode ser processado pelo " --"servidor de retraçamento." -+"servidor retrace." - - #: ../src/plugins/abrt-retrace-client.c:769 - msgid "" -@@ -1838,7 +1912,7 @@ msgstr "log no syslog" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" --msgstr "permitir conexões inseguras ao servidor de retraçamento" -+msgstr "permitir conexões inseguras ao servidor retrace" - - #: ../src/plugins/abrt-retrace-client.c:1221 - msgid "" -@@ -2256,7 +2330,7 @@ msgstr "%s' identifica mais de um diretório problemático" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Uso: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2289,7 +2363,7 @@ msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." - - #: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opções]" - - #: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 - #: ../src/cli-ng/abrtcli/cli.py:264 -@@ -2335,7 +2409,7 @@ msgstr "Não há o diretório defeituoso '%s'" - - #: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - - #: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" -@@ -2356,12 +2430,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Não foi possível encontrar problema '%s'" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "O problema '%s' não pode ser relatado" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/report.c:63 ../src/cli/process.c:70 -@@ -2413,114 +2487,117 @@ msgstr "Seleciona somente problemas detectados após o timestamp" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "O problema não tem backtrace " - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Iniciar processo de retraçamento?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Exibir backtrace do problema" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Este" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Último" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "problema {} não é do tipo C/C++ . Não foi possível instalar debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Permissão negada: '{}'\n" -+"Se este for um problema de sistema, tente executar este comando como usuário " -+"raiz" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Instalar debuginfo necessário para determinado problema" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Executar GDB para um problema" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Formato de saída" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Formato de saída embutido " - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Nenhum problema" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Listar problemas " - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Imprimir informações sobre o problema" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Avisar antes de remover" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Não avisar antes de remover" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Você tem certeza que deseja remover este problema? " - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Removido(s)" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Problema removido " - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Relatar problema" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Executar retraçamento local" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Executar retraçamento remoto usando servidor de retraçamento" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Forçar retraçamento mesmo que já exista backtrace" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Este problema já possui backtrace" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Execute retraçamento abrt com -f/--force para retraçar novamente" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Mostrar backtrace?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Não é possível retraçamento para este tipo de problema" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2529,42 +2606,47 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Carregar core dump e executar retraçamento remoto? (Pode conter dados " -+"sigilosos). Caso sua resposta seja 'Não', um rastreamento de pilha será " -+"gerado localmente. Um retraçamento local pode exigir que baixe uma grande " -+"quantidade de dados de debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Retraçamento remoto " - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Retraçamento local" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Gerar backtrace a partir do coredump" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT detectou problema(s) {}. Para mais informações execute: lista abrt {}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Mostrar contagem das quebras recentes" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Autenticar e mostrar todos os problemas nesta máquina" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Não há problema(s) equivalente (s)" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Equivalência ambígua especificada resultando em problemas múltiplos:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Não relatável " - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -@@ -2584,6 +2666,14 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"Carrega o coredump em um servidor, que gera o backtrace e retorna-o. Se o " -+"usuário não desejar carregar seu coredump para qualquer lugar que o evento " -+"realize análise local. A análise local é executada se a análise remota " -+"falhar. Prós: não é necessário fazer downloads de debuginfo. O banco de " -+"dados do servidor Retrace de debuginfos é mais completo. O Servidor Retrace " -+"pode gerar melhores backtraces. Contras: o coredump que você carrega contém " -+"todos os dados do programa de travamento, incluindo seus dados pessoais, " -+"caso haja algum." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" -diff --git a/po/ru.po b/po/ru.po -index e5bde0b..e6d2c1f 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -1,24 +1,27 @@ - # Igor Gorbounov , 2015. #zanata - # yuliya , 2015. #zanata -+# Igor Gorbounov , 2016. #zanata -+# Jakub Filak , 2016. #zanata -+# yuliya , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-07-20 08:46-0400\n" -+"PO-Revision-Date: 2016-07-14 05:37-0400\n" - "Last-Translator: yuliya \n" - "Language-Team: Russian\n" - "Language: ru\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "Отчеты о сбоях" -+msgstr "Создание отчетов об ошибках" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" -@@ -28,7 +31,7 @@ msgstr "Просмотреть сбои приложения и создать - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "Не удается стать владельцем «%s»" -+msgstr "Не удалось получить права владения «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/applet/applet.c:268 -@@ -61,8 +64,7 @@ msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" --"Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке " --"автоматически отправлен." -+"Похоже, произошел сбой %s. Отчет об этой ошибке автоматически отправлен." - - #: ../src/applet/applet.c:699 - #, c-format -@@ -70,8 +72,8 @@ msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" --"Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке будет " --"отправлен, когда будет доступ к Интернету." -+"Похоже, произошел сбой %s. Отчет об этой ошибке будет отправлен, когда будет " -+"доступ к Интернету." - - #: ../src/applet/applet.c:705 ../src/applet/applet.c:719 - #: ../src/applet/applet.c:747 -@@ -80,8 +82,8 @@ msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" --"Похоже, что, к сожалению, произошел сбой %s. Свяжитесь с разработчиком, если " --"вы хотите сообщить о проблеме." -+"Похоже, произошел сбой %s. Свяжитесь с разработчиком, если вы хотите " -+"сообщить о проблеме." - - #: ../src/applet/applet.c:713 - #, c-format -@@ -89,32 +91,32 @@ msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" --"Похоже, что, к сожалению, произошел сбой %s. Если вы хотите помочь решить " --"проблему, отправьте отчет." -+"Похоже, произошел сбой %s. Если вы хотите помочь решить проблему, отправьте " -+"отчет." - - #: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" --"Похоже, что, к сожалению, произошел сбой компонента. Автоматически отправлен " --"отчет об этой проблеме." -+"Похоже, произошел сбой компонента. Автоматически отправлен отчет об этой " -+"проблеме." - - #: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" --"Похоже, что, к сожалению, произошел сбой компонента. Отчет об этой проблеме " --"будет отправлен, когда будет доступ к Интернету." -+"Похоже, произошел сбой компонента. Отчет об этой проблеме будет отправлен, " -+"когда будет доступ к Интернету." - - #: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" --"Похоже, что, к сожалению, произошел сбой. Если вы хотите помощь в решении " --"проблемы, отправьте отчет." -+"Похоже, произошел сбой. Если вы хотите помочь в решении проблемы, отправьте " -+"отчет." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/applet/applet.c:786 -@@ -157,10 +159,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Указанный выше параметр конфигурации был перенесен в GSettings, и " -+"переключатель теперь привязан к значению «report-technical-problems» из " -+"схемы «org.gnome.desktop.privacy»." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Указанный выше параметр теперь настраивается в " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 -@@ -175,12 +180,12 @@ msgstr "Автоматически отправлять uReport" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "Сокращенный отчет" -+msgstr "Краткий отчет" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "Сокращенный отчет без подтверждения" -+msgstr "Краткий отчет без подтверждения" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" -@@ -191,6 +196,14 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Файл дампа памяти нужен для генерации трассировки стека. Эта операция " -+"требует значительных затрат времени и места, поэтому ABRT предоставляет " -+"средства для трассировки стека вызовов на основании дампа памяти, " -+"предварительно загруженного на сервер. Если выбрано значение «Всегда», то " -+"ABRT будет отправлять дамп памяти по умолчанию, не запрашивая подтверждения, " -+"и наоборот, «Никогда» означает, что трассировка стека будет генерироваться " -+"локально. Если выбрать «Спрашивать», ABRT будет каждый раз запрашивать " -+"подтверждение у пользователя." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -201,8 +214,8 @@ msgid "" - "without asking." - msgstr "" - "ABRT хранит данные о сбоях в каталогах. Когда ABRT потребуется осуществить " --"запись в каталог, он будет перемещен в вашу домашнюю папку. Если этот " --"параметр выключен, ABRT переместит каталог с данными сбоя без подтверждения." -+"запись в каталог, он будет перемещен в ваш домашний каталог. Если этот " -+"параметр выключен, ABRT переместит каталог без подтверждения." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 -@@ -236,7 +249,7 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" - "Если этот параметр включен, ABRT не будет показывать уведомления об отправке " --"отчетов. Действует, если включен сокращенный формат." -+"отчетов. Действует, только если включен сокращенный формат." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 - msgid "" -@@ -250,7 +263,7 @@ msgstr "" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "Ограничение доступа к отчету" -+msgstr "Запросить закрытый отчет для конфиденциальной информации" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:12 -@@ -270,19 +283,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Всегда" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Никогда" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Спрашивать" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Загрузить дамп памяти на сервер для генерации трассировки" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 -@@ -315,7 +328,7 @@ msgstr "О программе" - msgid "Quit" - msgstr "Выход" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -326,8 +339,8 @@ msgstr "" - "Сделать запрос к базе данных и сохранить название пакета и компонента" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -339,15 +352,15 @@ msgid "Problem directory" - msgstr "Каталог с данными сбоя" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Файл конфигурации" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Использовать этот каталог в качестве корневого для RPM" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -355,25 +368,25 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Сохранить метаданные контейнера" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Корневой каталог для выполнения команд для контейнера" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [параметры]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Использовать NUM как uid клиента" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 -@@ -381,7 +394,7 @@ msgid "Log to syslog" - msgstr "Запись в журнал" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Добавить названия программ в журнал" - -@@ -411,7 +424,7 @@ msgstr "Не разрешено" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Не удалось открыть данные проблемы" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/dbus/abrt-dbus.c:317 -@@ -428,7 +441,7 @@ msgstr "Не удалось изменить владельца каталога - #: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "Не удалось определить размер «%s»." -+msgstr "Не удалось определить размер «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/dbus/abrt-dbus.c:680 -@@ -473,16 +486,16 @@ msgid "" - "problem. If you have time and want to help the developers in their effort to " - "sort out this problem, please contact them directly." - msgstr "" --"Данные об ошибке неполные. Обычно это случается, когда сбой обнаруживается " --"во время выключения компьютера или выхода пользователя из системы. Чтобы " --"предоставлять значимые отчеты о сбоях, ABRT не позволит вам отправить отчет " --"об этой ошибке. Если у вас есть время, и вы хотите помочь разработчикам в их " --"усилиях разобраться с этим сбоем, связывайтесь с ними напрямую." -+"Неполные данные об ошибке. Обычно имеет место, если сбой произошел во время " -+"выключения компьютера или завершения сеанса пользователя. Во избежание " -+"отправки неполных данных, ABRT не позволит вам отправить отчет. Если у вас " -+"есть время, и вы хотите помочь разработчикам устранить эту ошибку, свяжитесь " -+"с ними напрямую." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "Не выполнять как службу" -+msgstr "Не выполнять в фоновом режиме" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrtd.c:458 -@@ -491,7 +504,7 @@ msgstr "Запись в журнал даже с -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-handle-event.c:403 -@@ -505,14 +518,14 @@ msgstr "Взаимодействие с пользователем напрям - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Увеличить значение nice на величину шага INCREMENT" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" - msgstr "" --"Полный буфер и нет свободных способов обработки. Пропускается архив «%s»" -+"Буфер переполнен и нет свободных способов обработки. Пропускается архив «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:258 -@@ -559,7 +572,7 @@ msgstr "& [ " - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "Отключает аутентификацию" -+msgstr "Отключает проверку подлинности" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/daemon/abrt-auto-reporting.c:234 -@@ -581,7 +594,7 @@ msgstr "Путь к SSL-сертификату uReport или тип серти - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "Если пароль задан, необходимо определить --username" -+msgstr "Если задан параметр --password, необходимо определить и --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/daemon/abrt-auto-reporting.c:258 -@@ -607,7 +620,7 @@ msgstr "Недопустимое число аргументов" - #: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Неизвестное значение: «%s»\n" -+msgstr "Неизвестное значение параметра: «%s»\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/daemon/abrt-auto-reporting.c:336 -@@ -617,7 +630,7 @@ msgstr "Пароль:" - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "Для продолжения необходимо ввести пароль.\n" -+msgstr "Для продолжения необходимо ввести пароль\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #. Print only the part before ':' of a string like "username:password" -@@ -740,7 +753,7 @@ msgstr "'{0}' обработан успешно" - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 - msgid "Generating backtrace" --msgstr "Формируется протокол сбоя" -+msgstr "Формируется обратная трассировка" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/lib/problem_api_dbus.c:42 -@@ -758,16 +771,16 @@ msgstr "Не удается сменить владельца «%s»: %s" - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" --msgstr "Не удалось удалить каталог с данными о сбоях: %s" -+msgstr "Не удалось удалить каталог с данными об ошибке: %s" - - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Ошибка вызова метода D-Bus GetInfo: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Не удалось получить данные об ошибках из abrt-dbus" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/lib/problem_api_dbus.c:193 -@@ -784,7 +797,7 @@ msgstr "Не удается получить данные об ошибке от - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "Не удается проверить, существует ли элемент, через abrt-dbus: %s" -+msgstr "Не удалось проверить существование элемента с помощью abrt-dbus: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/lib/ignored_problems.c:233 -@@ -882,7 +895,7 @@ msgid "" - msgstr "" - "& [-vs] -d DIR\n" - "\n" --"Расчет и сохранение UUID и DUPHASH для каталога сбоев oops DIR" -+"Расчет и сохранение UUID и DUPHASH для каталога сбоев DIR" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -963,40 +976,41 @@ msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" --"kernel.log сообщает об ошибках оборудования.\n" --"Это, скорее всего, не проблема программного обеспечения.\n" -+"Журнал ядра сообщает об ошибках оборудования.\n" -+"Это, скорее всего, не связано с проблемами программного обеспечения.\n" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "не удалось открыть каталог «{0}»" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Ошибка каталога с данными проблемы: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." - msgstr "" -+"Используется продукт «{0}» в соответствии с заданным в /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Используется продукт {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Используется версия {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Обнаружен дубликат отчета №{0} в Bugzilla " - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Отчет с «abrt_hash:{0}» в Bugzilla не обнаружен" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Предупреждение: abrt-bodhi не поддерживает версию «Rawhide»" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-generate-backtrace.c:42 -@@ -1063,7 +1077,7 @@ msgid "Error: %s" - msgstr "Ошибка: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Выход по команде пользователя" - -@@ -1086,73 +1100,53 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Формат: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"Устанавливает отладочные пакеты для всех build-id, перечисленных в файле\n" --"BUILD_IDS_FILE, в каталог CACHEDIR, используя TMPDIR в качестве каталога.\n" --"Старые файлы в CACHEDIR будут удаляться, пока его размер не станет меньше " --"SIZE.\n" --"\n" --"Читает конфигурацию из /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Подробный вывод\n" --" -y Неинтерактивный режим, принимается «Да» на все вопросы\n" --" --ids По умолчанию: build_ids\n" --" --tmpdir По умолчанию: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache По умолчанию: /var/cache/abrt-di\n" --" --size_mb По умолчанию: 4096\n" --" --pkgmgr По умолчанию: менеджер пакетов из CCpp.conf или 'dnf'\n" --" -e,--exact Загрузить только указанные файлы\n" --" --repo Шаблон для поиска репозиториев.\n" --" По умолчанию: *debug*\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Не удалось открыть {0}: {1}" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Дамп содержит ссылки на файлы debuginfo (всего {0}), {1} из них не " - "установлен(о)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "некоторые файлы debuginfo не установлены ({0})" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Неправильная конфигурация расширения CCpp, неподдерживаемый менеджер пакетов:" --" '%s'" -+" «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Запрошенный файл не найден: {0}" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Отсутствует файл debuginfo: {0}" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Все отладочные пакеты доступны" - -@@ -1164,26 +1158,31 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Устанавливает пакеты debuginfo для всех build-id,\n" -+"перечисленных в файле FILE, в системный кэш ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Неинтерактивный режим: автоматически отвечать «Да» на все вопросы" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "«-» означает STDIN, по умолчанию: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Загружать только заданные файлы" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Шаблон для поиска репозиториев. По умолчанию: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Игнорируется" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 -@@ -1192,9 +1191,9 @@ msgid "" - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" --"Отправить дамп ядра? Он может содержать конфиденциальные данные. При отказе " --"трассировка стека будет выполнена локально. Это может потребовать загрузки " --"значительного объема данных." -+"Загрузить дамп на сервер? Он может содержать конфиденциальные данные. При " -+"отказе трассировка стека будет выполнена локально, что может потребовать " -+"загрузки значительного объема данных." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 -@@ -1227,7 +1226,7 @@ msgstr "Удалить каталоги целиком" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "Удалить файлы из каталога" -+msgstr "Удалить файлы из этого каталога" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-trim-files.c:238 -@@ -1474,7 +1473,7 @@ msgstr "Создавать каталог в DIR для каждого сбоя - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1514,34 +1513,35 @@ msgstr "Не удалось скомпилировать регулярное в - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Не удалось обновить данные проблемы: oops не обнаружен." - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" - msgstr "" -+"Обнаружено несколько ошибок oops: будет обработана только первая из них." - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Не удалось получить всю запрошенную информацию из journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Не сохраняется повторяющийся сбой после %ds (предел %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Не удалось сохранить данные по обнаружению сбоя в базе данных abrt" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Не удалось инициализировать отслеживание systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1566,59 +1566,59 @@ msgstr "" - "\n" - "Последняя позиция просмотра сохраняется в " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Создавать новый каталог для сбоя в DIR для каждого дампа памяти" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Начать чтение журнала systemd с позиции курсора" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Начать чтение журнала systemd с конца" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Ограничить скорость создания каталогов со сбоями до 1 за INT секунд" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "То же, что и -t INT, INT указывается в plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Следить за журналом systemd с последней позиции просмотра (если есть)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Необходимо указать либо -c CURSOR, либо -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не удается открыть журнал systemd" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Не удается отобрать из журнала systemd только данные systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не удается перейти в конец журнала " - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1684,7 +1684,7 @@ msgstr "Не удалось начать наблюдение с курсора - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Не удалось обработать данные обратной трассировки из журнала" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1696,7 +1696,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1707,25 +1707,31 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Вывод найденных ошибок в stdout" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" --msgstr "" -+msgstr "Создавать каталог в DIR для каждой обнаруженной ошибки" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Фильтр журнала, например: _COMM=gdm-x-session. Может содержать несколько " -+"шаблонов." - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Фильтр для выборки данных из журнала может быть задан с помощью параметра «-" -+"j» или в файле /etc/abrt/plugins/xorg.conf." - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" - msgstr "" -+"Не удается отобрать из журнала systemd-journal только данные, имеющие " -+"отношение к Xorg." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-xorg.c:35 -@@ -1741,7 +1747,7 @@ msgstr "" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" --msgstr "Вывести найденные данные о сбое в стандартный вывод" -+msgstr "Вывести найденные данные о ошибках в stdout" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-xorg.c:54 -@@ -1750,17 +1756,17 @@ msgstr "Создавать каталог в DIR для каждого сбоя" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Не удалось извлечь данные трассировки из журнала" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "Не удается сохранить точку отслеживания журнала" -+msgstr "Не удалось сохранить точку отслеживания журнала" - - #: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" --msgstr "Не удается сохранить точку отслеживания журнала: открывание(«%s»)" -+msgstr "Не удается сохранить точку отслеживания журнала: open(«%s»)" - - #. Only notice because this is expected - #: ../src/plugins/abrt-journal.c:302 -@@ -1787,12 +1793,12 @@ msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - "Не удается восстановить точку отслеживания журнала: файл «%s» превышает " --"предельный размер %dБ" -+"предельный размер %d Б" - - #: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" --msgstr "Не удается восстановить точку отслеживания журнала: открывание(«%s»)" -+msgstr "Не удается восстановить точку отслеживания журнала: open(«%s»)" - - #: ../src/plugins/abrt-journal.c:334 - #, c-format -@@ -1805,7 +1811,9 @@ msgstr "" - #: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "Не удалось переместить журнал в позицию курсора из файла «%s»" -+msgstr "" -+"Не удалось перейти к позиции курсора в журнале в соответствии с указанным в " -+"файле «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-retrace-client.c:70 -@@ -2102,13 +2110,12 @@ msgstr "чтение данных из дампа памяти" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" --msgstr "Ожидать операции опроса" -+msgstr "Ожидать операций опроса" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-retrace-client.c:1237 - msgid "(debug) do not delete temporary archive created from dump dir in " --msgstr "" --"(отладка) не удалять временный архив, созданный из каталога для дампов в" -+msgstr "(отладка) не удалять временный архив, созданный из каталога дампа в" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-retrace-client.c:1239 -@@ -2547,7 +2554,7 @@ msgstr "«%s» обнаружил несколько проблемных кат - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Формат: abrt-cli [--authenticate] [--version] КОМАНДА [DIR]..." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/abrt-cli.c:134 -@@ -2562,7 +2569,7 @@ msgstr "Удалить каталог DIR" - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" --msgstr "Анализировать и предоставить отчет по ошибкам в DIR" -+msgstr "Анализировать и представить отчет по ошибкам в DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/abrt-cli.c:137 -@@ -2599,17 +2606,17 @@ msgstr "Показать ошибки, о которых еще не сообщ - #. deprecate -d option with --pretty=full - #: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" --msgstr "Показать подробный отчёт" -+msgstr "Представить подробный отчет" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" --msgstr "Дать список сбоев, обнаруженных после указанного момента времени" -+msgstr "Получить список ошибок, обнаруженных после указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" --msgstr "Дать список сбоев, обнаруженных до указанного момента времени" -+msgstr "Получить список ошибок, обнаруженных до указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/list.c:166 -@@ -2620,7 +2627,7 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - "Функции автоматического создания отчетов отключены. \n" --"Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" -+"Чтобы их включить, в режиме root выполните: «abrt-auto-reporting enabled»\n" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/list.c:183 -@@ -2663,12 +2670,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Не удалось найти информацию об ошибке «%s" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Ошибка «%s» не может быть зарегистрирована" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/report.c:63 ../src/cli/process.c:70 -@@ -2712,8 +2719,8 @@ msgstr "Для перехода к следующей проблеме нажм - #: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" --"Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " --"последовательно" -+"Если аргумент --since не указан, будут обработаны все ошибки в порядке их " -+"обнаружения." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:144 -@@ -2722,114 +2729,119 @@ msgstr "Выбор сбоев, обнаруженных после заданн - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Для этой ошибки трассировка не создавалась" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Начать процесс отслеживания?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Показать данные трассировки этой ошибки" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Эта" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Последняя" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "ошибка {} не имеет отношения к C/C++. Невозможно установить debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Отказано в доступе: «{}»\n" -+"Если это вызвано конфликтом в системе, попробуйте выполнить эту команду от " -+"имени root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Установить debuginfo для указанного конфликта" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Обработка ошибки в GDB " - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Формат вывода" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Встроенный формат вывода" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Ошибок не обнаружено" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Показать список ошибок" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Вывод информации об ошибке" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Запрос подтверждения перед удалением" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Не запрашивать подтверждения перед удалением" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Вы действительно хотите удалить данные об этой ошибке?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Удалено" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Удалить проблему" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Сообщить об ошибке" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Локальная трассировка" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Удаленная трассировка на сервере" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Трассировать повторно, даже если отладочная информация уже существует" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Протокол трассировки для этой ошибки уже сформирован" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" - msgstr "" -+"Выполните «abrt retrace» с аргументом «-f/--force» для генерации повторной " -+"трассировки" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Показать трассировку?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Для этого типа ошибок повторная трассировка невозможна" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2838,42 +2850,48 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Загрузить дамп на сервер для прохождения трассировки? Он может содержать " -+"конфиденциальные данные. Если вы откажетесь, трассировка стека будет " -+"генерироваться локально, однако это может потребовать загрузки значительного " -+"объема данных." - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Удаленная трассировка" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Локальная трассировка" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Генерировать данные трассировки из дампа памяти" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"Обнаружено ошибок: {}. Для получения дополнительной информации выполните: " -+"«abrt list{}»" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Вывод числа недавно обнаруженных ошибок" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Пройти аутентификацию и показать все ошибки на этой машине" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Соответствий не обнаружено" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Неточный шаблон привел к появлению нескольких конфликтов:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Невозможно сообщить об ошибке" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/analyze_CCpp.xml.in.h:1 -diff --git a/po/sk.po b/po/sk.po -index 63f33da..d08b919 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,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.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -281,15 +281,15 @@ msgstr "O programe" - msgid "Quit" - msgstr "Ukončiť" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -300,43 +300,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Adresár s informáciami o probléme" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfiguračný súbor" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [voľby]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Použiť NUM ako identifikátor používateľa pre klienta" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Zalogovať do syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Pridať názvy programu do log-u" - -@@ -895,7 +895,7 @@ msgstr "Chyba: Odlaďovač GDB nevrátil žiadne údaje" - msgid "Error: %s" - msgstr "Chyba: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Ukončuje sa na príkaz používateľa" - -@@ -918,7 +918,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -926,34 +929,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Nie je možné otvoriť {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump odkazuje na {0} debuginfo balíčkov, {1} z nich nie je " - "nainštalovaných" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Chýba požadovaný súbor: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Chýbajúci debuginfo balíček: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Všetky debuginfo balíčky sú dostupné." - -@@ -1222,7 +1225,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Vytvoriť nový adresár s problémom v DIR pre každý nájdený oops" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1263,28 +1266,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1298,59 +1301,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1416,7 +1419,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/sq.po b/po/sq.po -index aeb05e4..d72c722 100644 ---- a/po/sq.po -+++ b/po/sq.po -@@ -1,17 +1,21 @@ - # Silva Arapi , 2015. #zanata -+# Anxhela Hyseni , 2016. #zanata -+# Anxhelo Lushka , 2016. #zanata -+# Jakub Filak , 2016. #zanata -+# Silva Arapi , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-10-31 11:16-0400\n" --"Last-Translator: Silva Arapi \n" -+"PO-Revision-Date: 2016-07-14 05:50-0400\n" -+"Last-Translator: Jakub Filak \n" - "Language-Team: Albanian\n" - "Language: sq\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 -@@ -25,7 +29,7 @@ msgstr "Shikoni dhe raportoni përplasjet e aplikacioneve" - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "Nuk mund të merret autorësia e '%s'" - - #: ../src/applet/applet.c:268 - #, c-format -@@ -39,15 +43,15 @@ msgstr "Nuk mund të mbyllen njoftimet: %s" - - #: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Oops!" - - #: ../src/applet/applet.c:616 - msgid "Report" --msgstr "" -+msgstr "Raporto" - - #: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Rifillo" - - #: ../src/applet/applet.c:694 - #, c-format -@@ -55,6 +59,8 @@ msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Na vjen keq, mesa duket %s pati përplasje. Problemi është raportuar " -+"automatikisht." - - #: ../src/applet/applet.c:699 - #, c-format -@@ -62,6 +68,8 @@ msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Na vjen keq, mesa duket %s pati përplasje. Problemi do të raportohet sapo të " -+"keni një lidhje në internet." - - #: ../src/applet/applet.c:705 ../src/applet/applet.c:719 - #: ../src/applet/applet.c:747 -@@ -70,6 +78,8 @@ msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Na vjen keq, mesa duket %s pati përplasje. Ju lutem, kontaktoni zhvilluesin " -+"nëse doni ta raportoni këtë problem." - - #: ../src/applet/applet.c:713 - #, c-format -@@ -77,45 +87,53 @@ msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Na vjen keq, mesa duket %s pati përplasje. Nëse doni të ndihmoni për ta " -+"zgjidhur këtë problem, ju lutem dërgoni një raport. " - - #: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Na vjen keq, mesa duket pati një problem me një nga komponentet. Problemi do " -+"të raportohet automatikisht." - - #: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Na vjen keq, mesa duket pati një problem me një nga komponentet. Problemi do " -+"të raportohet sapo të keni një lidhje në internet." - - #: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Na vjen keq, mesa duket pati një problem. Nëse doni të ndihmoni që ta " -+"zgjidhim këtë çështje, ju lutem dërgoni një raport." - - #: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "Nuk mund të tregoj njoftimet: %s" - - #. TODO: Terminate child's process? - #: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "" -+msgstr "Nuk mund të lexoj nga kanali gio: '%s'" - - #: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "" -+msgstr "Nuk mund të dërgoj shifrimin te kanali gio: %s" - - #: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "" -+msgstr "Nuk mund të aktivizoj gjendjen e mos bllokimit për kanalin gio: %s " - - #: ../src/applet/applet.c:1186 - msgid "" -@@ -123,6 +141,9 @@ msgid "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"& [-v] [DIR]...\n" -+"Një applet e cila njofton përdoruesit kur probleme të reja janë vëzhguar në " -+"ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" -@@ -130,26 +151,29 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Mundësimi i konfigurimit më sipër është zhvendosur tek MundësimetG dhe " -+"çelësi është i lidhur me vlerën e mundësimit 'raporto-probleme-teknike' nga " -+"skema 'org.gnome.desktop.privacy'." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Opsioni i mësipërm i konfigurimit mund të konfigurohet në" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Pyet përpara se të vidhet direktoria" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Dërgo automatikisht uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "Raportim i shkurtuar" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "Raportime të shkurtuara pa zë" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" -@@ -160,6 +184,13 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Skedari i coredump është i nevojshëm për të gjeneruar gjurmët e grumbullit " -+"të cilat duan kohë dhe hapësirë për të konsumuar veprimin. ABRT siguron një " -+"shërbim i cili gjeneron gjurmët e grumbullit nga coredumb por ju duhet të " -+"ngarkoni coredump në këtë shërbim. Me komandën 'Gjithmonë' ABRT gjithmonë do " -+"të ngarkojë coredump pa ju pyetur. Me komandën 'Asnjëherë' gjurmët e " -+"grumbullit gjithmonë do të gjenerohet lokalisht. Me komandën 'Pyet' ABRT " -+"gjithmonë do të pyesi përdoruesin." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -168,6 +199,10 @@ msgid "" - "directory. With this option disabled ABRT will move the problem directory " - "without asking." - msgstr "" -+"ABRT i ruan të dhënat e problemeve në direktori. Sa herë që ABRT ka nevoj " -+"për një direktori pët të shkruar, direktoria do të lëvizë nga vendndodhja në " -+"sistem në direktorin kryefaqe. Duke e çaktivizuar këtë opsion ABRT do ta " -+"lëvizë direktorin e problemeve pa pyetur. " - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -176,6 +211,11 @@ msgid "" - "uReport is sent at beginning of reporting process. With this option enabled " - "uReports are sent automatically immediately after problem detection." - msgstr "" -+"uReport është i shkurtër dhe përshkrim anonim i plotë i problemit. ABRT " -+"përdor uReports për kopjimin e zbulimit global. Konfigurimi uReport i " -+"parazgjedhur është dërguar në fillim të proçesit të raportuar. Me këtë " -+"komandë të aktivizuar uReports janë dërguar menjëherë automatikisht pasi " -+"problemi është gjetur." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" -@@ -183,26 +223,35 @@ msgid "" - "in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" -+"Me këtë komandë të aktivizuar proçesi i filluar duke klikuar në butonin " -+"Raporto në flluckën e njoftimit të problemit do të ndërpritet pasi uReport " -+"është dërguar. Ju gjithmonë mund të përdorni shfletuesin e problemit të " -+"parapërzgjdhur për të përfunduar raportin." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 - msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" -+"Me këtë komandë të aktivizuar ABRT asnjëherë nuk do t'i tregojë njoftimet e " -+"raportimeve të problemeve. Kjo do të marri efekt vetëm në qoftë se raportimi " -+"i Shkurtuar është i aktivizuar." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" -+"Me këtë komandë të aktivizuar ABRT gjithmonë do të krijojë etiketa problemi " -+"me aksesim të kufizuar në qoftë se të dhëna sensitive janë gjetur." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "" -+msgstr "Kërko bilet private për informacionet sensitive" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "" -+msgstr "Njofto për probleme jo të plota" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" -@@ -210,57 +259,64 @@ msgid "" - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" -+"Problemet e papërfunduara janë gjetur kur kompjuteri juaj ishte duke u fikur " -+"ose përdoruesi ishte shkyçur. Në mënyrë që të sigurohen raportime problemesh " -+"të vlefshme, ABRT nuk do t'ju lejojë juve që të paraqisni këto probleme." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Gjithmonë" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Kurrë" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Pyet" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Ngarko coredump për gjenerimin e backtrace" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Afër" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "" -+msgstr "_Parazgjedhur" - - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "" -+msgstr "Problem gjatë raportimit të konfigurimit" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "" -+msgstr "Rreth System Config ABRT" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "" -+msgstr "Rreth nesh" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" --msgstr "" -+msgstr "Hiq dorë" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Paketa e pyetsorit të bazës së të dhënave dhe ruani paketën dhe komponenten " -+"e emrit" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -269,94 +325,98 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "" -+msgstr "Direktoria e problemit" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" --msgstr "" -+msgstr "Skedari i konfigurimit" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Përdor këtë direktori si RPM root" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Ruani depon e metadata" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Udhëzuesi bazë për të ekzekutuar komandat e depos" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" --msgstr "" -+msgstr "& [mundësitë]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" --msgstr "" -+msgstr "Përdorni NUM si klient uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" --msgstr "" -+msgstr "Kyçuni në syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" --msgstr "" -+msgstr "Shto emrat e programeve në log" - - #: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" --msgstr "" -+msgstr "Gabim i panjohur" - - #: ../src/dbus/abrt-dbus.c:167 - #, c-format - msgid "'%s' is not a valid element name" --msgstr "" -+msgstr "'%s' nuk është një emër i vlefshëm i elementit" - - #: ../src/dbus/abrt-dbus.c:219 - #, c-format - msgid "'%s' is not a valid problem directory" --msgstr "" -+msgstr "'%s' nuk është një udhëzues problemi i vlefshëm" - - #: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 - #: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" --msgstr "" -+msgstr "I paautorizuar" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Nuk mund të hapet problemi" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format - msgid "'%s' element can't be modified" --msgstr "" -+msgstr "Elementi '%s' nuk mund të modifikohet" - - #: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" -+"Ushqimi i udhëzuesit dështoi. Kontrolloni bazën e sistemit për më shumë " -+"detaje." - - #: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "" -+msgstr "Nuk mund të merret madhësia e '%s'" - - #: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" --msgstr "" -+msgstr "Nuk ka hapësirë bosh për problemin" - - #: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "" -+msgstr "Nuk mund të fshihet elementi '%s' nga direktoria e problemit '%s'" - - #: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 -@@ -365,15 +425,17 @@ msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" -+"Emri '%s' ka humbur, ju lutem kontrolloni në qoftë se shërbime të tjera të " -+"zotëruara nuk janë duke u ekzeketuar.\n" - - #: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "" -+msgstr "Dilni pas NUM sekondash e pasiviteti" - - #: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." --msgstr "" -+msgstr "Ky program duhet të ekzekutohet si administrator." - - #: ../src/daemon/abrtd.c:389 - msgid "" -@@ -383,35 +445,42 @@ msgid "" - "problem. If you have time and want to help the developers in their effort to " - "sort out this problem, please contact them directly." - msgstr "" -+"Të dhënat problematike janë të pakompletuara. Kjo zakonisht ndodh kur " -+"problemi është gjetur kur kompjuteri është duke u fikur ose përdoruesi është " -+"duke u shkyçur. Në mënyrë që të sigurojë raportime problemesh të vlefshme, " -+"ABRT nuk do t'ju lejojë të dorëzoni këtë problem. Në qoftë se ju keni kohë " -+"dhe doni të ndihmoni zhvilluesit në përpjekjet e tyre për të zgjidhur këtë " -+"problem, ju lutem kontaktoni ata menjëherë." - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "" -+msgstr "Mos daemonizo" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" --msgstr "" -+msgstr "Kyçuni në siskyç edhe me -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n RRITJE] -e|--event EVENT DIR..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "" -+msgstr "Ekzekuto EVENT në DIR" - - #: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" --msgstr "" -+msgstr "Komuniko drejtpërdrejt me përdoruesin" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Rrisni vlerën nga RRITJA" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" - msgstr "" -+"Jo punëtorë falas dhe armotizator të plotë. Duke lënë jashtë arkivën '%s'" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -424,85 +493,95 @@ msgid "" - "If UPLOAD_DIRECTORY is not provided, uses a value of\n" - "WatchCrashdumpArchiveDir option from abrt.conf" - msgstr "" -+"& [-vs] [-w NUM] [-c MiB] [NGARKO_DIREKTORIN]\n" -+"\n" -+"\n" -+"Shikoni NGARKO_DIREKTORIN dhe shpaketoni arkivat hyrëse në DumpLocation " -+"specifikuar në abrt.conf\n" -+"\n" -+"Në qoftë se NGARKO_DIRECTORY nuk është pajisur, përdorni një vlerë të " -+"ShikoPërplasjegrumbullArkivaDir mundësi nga abrt.conf" - - #: ../src/daemon/abrt-upload-watch.c:281 - msgid "Daemize" --msgstr "" -+msgstr "Daemizo" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "" -+msgstr "Numri i punonjësve bashkëveprues. E parazgjedhur është" - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "" -+msgstr "Madhësia e depos në MiB. E parazgjedhur është" - - #: ../src/daemon/abrt-auto-reporting.c:198 - #: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " --msgstr "" -+msgstr "& [ " - - #: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Fik verifikimin e vërtetësisë" - - #: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat Mbështet emër përdoruesi" - - #: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" -+"Red Hat Mbështet fjalëkalim, në qoftë se është dhënë, një nxitje për atë do " -+"të jetë nxjerrë" - - #: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "uReport shtigjet e çertifikatës ose lloji i çertifikatës SSL" - - #: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "Ju duhet gjithashtu të specifikoni --emërpërdoruesi për --fjalëkalim" - - #: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "Ju mund të përdorni ose --emërpërdoruesi ose -- " - - #: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "Ju mund të përdorni ose --emërpërdoruesi ose --anonimisht" - - #: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "Ju mund të përdorni ose --anonimisht ose --çertifikatë" - - #: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" --msgstr "" -+msgstr "Numër i pavlefshëm argumentesh" - - #: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "" -+msgstr "Vlerë e panjohur e komandës: '%s'\n" - - #: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Fjalëkalimi:" - - #: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Nuk mund të vazhdohet pa fjalëkalim\n" - - #. Print only the part before ':' of a string like "username:password" - #: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "HTTP Vërtetuar reportime auto" - - #: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "SSL Klient Vërtetuar reportime auto" - - #: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "raportim automatik anonim" - - #: ../src/daemon/abrt-handle-upload.in:135 - #, c-format -@@ -515,120 +594,128 @@ msgid "" - " UPLOAD_DIR - Directory where uploaded archives are stored\n" - " FILENAME - Uploaded archive file name\n" - msgstr "" -+"Përdorimi: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -+"\n" -+" -v - fjalëshumë\n" -+" -d - Fshi arkivat e ngarkuara\n" -+" ABRT_SPOOL_DIR - Udhëzuesi ku arkiva të vlefshme të ngarkuara janë " -+"shpaketuar në\n" -+" UPLOAD_DIR - Udhëzuesi ku arkivat e ngarkuara janë ruajtur\n" -+" FILENAME - Emri i skedarëce të arkivave të ngarkuara \n" - - #: ../src/daemon/abrt-handle-upload.in:171 - #: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Nuk është një udhëzues: '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Duke anashkaluar: '{0}' (fillon me vijë të pjerrët)" - - #: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Duke anashkaluar: '{0}' (fillon me pikë)" - - #: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Duke anashkaluar: '{0}' (përmban..)" - - #: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Duke anashkaluar: '{0}' (përmban hapësira)" - - #: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Duke anashkaluar: '{0}' (përmban lidhëse)" - - #: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Nuk mund të ndryshohet udhëzuesi në '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "" -+msgstr "Llojë skedari i panjohur: '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" --msgstr "" -+msgstr "Nuk mund të krijojmë udhëzues pune në '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" --msgstr "" -+msgstr "Nuk mund të lëvizë nga '{0}' në '{1}'" - - #: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" --msgstr "" -+msgstr "Nuk mund të kopjohet nga '{0}' në '{1}'" - - #: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" --msgstr "" -+msgstr "Gabim verifilimi në '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" --msgstr "" -+msgstr "Duke shpaketuar '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" --msgstr "" -+msgstr "Nuk mund të krijojmë '{0}' udhëzues" - - #: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" --msgstr "" -+msgstr "Nuk mund të shpaketojmë '{0}'" - - #: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" --msgstr "" -+msgstr "'{0}' u përpunua me sukses" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 - msgid "Generating backtrace" --msgstr "" -+msgstr "Duke gjeneruar përgjurmimin" - - #: ../src/lib/problem_api_dbus.c:42 - #, c-format - msgid "Can't connect to system DBus: %s" --msgstr "" -+msgstr "Nuk mund të lidhet me sistemin DBus: %s" - - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "" -+msgstr "Nuk mund të ushqehet '%s': %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" --msgstr "" -+msgstr "Fshirja e direktoris së problemit dështoi: %s" - - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus metoda MerrInfo dështoi: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Nuk mund të merren të dhënat e problemit nga abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "" -+msgstr "Nuk mund të merret lista e problemeve nga abrt-dbus: %s" - - #: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 - #, c-format - msgid "Can't get problem data from abrt-dbus: %s" --msgstr "" -+msgstr "Nuk mund të merren të dhënat e problemit nga abrt-dbus: %s" - - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Nuk mund të testohet nëse elementi ekziston mbi abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "" -+msgstr "Nuk mund të krijohet skedari i përkohshëm '%s'" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -636,12 +723,14 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" -+"Nuk mund të shkruhet tek '%s'. Problemi '%s' nuk do të hiqet nga problemet e " -+"injoruara '%s'" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "" -+msgstr "Nuk mund të riemërtohet '%s' tek '%s'. Dështoi heqja e problemit '%s'" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -650,6 +739,11 @@ msgid "" - "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" - "and identifies crash function in problem directory DIR" - msgstr "" -+"& [opsione] -d DIR\n" -+"\n" -+"Analizon përgjurmimin e C/C++, gjeneron hash-in e kopjuar, përgjurmon " -+"vlerësimin, dhe indentifikon funksionin e dështuar në direktorin e " -+"problemeve DIR " - - #. - #. * The parser failed. Compute the duphash from the executable -@@ -659,11 +753,11 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "" -+msgstr "Përgjurmimi i analizës gramatikore dështoi për %s" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" --msgstr "" -+msgstr "Fija e dështimit nuk u gjet" - - #: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" -@@ -671,25 +765,28 @@ msgid "" - "\n" - "Calculates and saves UUID of coredump in problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Llogarit dhe ruan UUID e coredump në direktorin e problemit DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "" -+msgstr "Duke analizuar coredump '%s'" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format - msgid "Missing build id: %s" --msgstr "" -+msgstr "Mungon id-ja ndërtuese: %s" - - #: ../src/plugins/abrt-action-analyze-core.in:142 - #, c-format - msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" --msgstr "" -+msgstr "Përdorim: %s [-v] [-o OUTFILE] -c COREFILE" - - #: ../src/plugins/abrt-action-analyze-core.in:164 - msgid "COREFILE is not specified" --msgstr "" -+msgstr "COREFILE nuk është e specifikuar" - - #: ../src/plugins/abrt-action-analyze-oops.c:37 - msgid "" -@@ -697,6 +794,9 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH for oops problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Llogarit dhe ruan UUID dhe DUPHASH për problemin oops e direktoris DIR" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -705,6 +805,11 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"Përgjurmimi nuk përmban mjaftueshëm struktura funksioni kuptimplota për t'u " -+"reportuar. Është e mërzitshme por nuk është e nevojshme sinjalizimi i një " -+"problemi me kompjuterin tuaj. ABRT nuk do t'jua lejojë ju krijimin e një " -+"raportimi në një sistem ndjekës së të metave por ju mund të kontaktoni " -+"mirëmbajtësit thelbësor nëpërmjet e-mail." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -712,11 +817,14 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Llogarit dhe ruan UUID dhe DUPHASH për problemet xorg e direktoris DIR" - - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "" -+msgstr "Moduli '%s' u ngarkua - nuk do të raportohet ky dështim" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -724,69 +832,75 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH of python crash dumps" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Llogarit dhe ruan UUID dhe DUPHASH e pirgjeve të dështimeve të pitonit" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" --msgstr "" -+msgstr "Përdorimi: {0} [-v[v]] [--core=VMCORE]" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:79 - msgid "File {0} doesn't exist" --msgstr "" -+msgstr "Skedari {0} nuk ekziston" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "" -+msgstr "Duke shkëputur tekstin oops nga bërthama" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Nuk mund të proçesohet {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "" -+msgstr "Nuk mund të shkëputet mesazhi oops: '{0}'" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "" -+msgstr "Tekti oops u shkëput me sukses" - - #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" -+"Logaritmi thelbësor tregon se gabimet e pajisjes fizike u gjetën.\n" -+"Kjo ka shumë të ngjarë që nuk është një problem i programit.\n" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "nuk mund të hapet direktoria e problemit '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Gabim në direktorin e problemeve: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Duke përdorur produktin '{0}' nga /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Duke përdorur produktin {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Duke përdorur versionin e produktit {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Kloni i gabimit bugzilla '#{0}' u gjet" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Nuk ka të meta bugzilla me 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Kujdes: abrt-bodhi nuk e suporton versionin e Produktit 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -794,14 +908,18 @@ msgid "" - "\n" - "Analyzes coredump in problem directory DIR, generates and saves backtrace" - msgstr "" -+"& [options] -d DIR\n" -+"\n" -+"Analizon coredump në direktorin e problemeve DIR, gjeneron dhe ruan " -+"përgjurmimin" - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 - msgid "Additional debuginfo directories" --msgstr "" -+msgstr "Direktoritë shtesë e info rregulluese" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "" -+msgstr "Vrit gdb nëse shkon për më shumë se NUM sekonda" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -809,7 +927,7 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" --msgstr "" -+msgstr "Përgjurmimi është gjeneruar dhe ruajtur, %u bytes" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 - msgid "" -@@ -817,28 +935,32 @@ msgid "" - "\n" - "Creates coredump-level backtrace from core dump and corresponding binary" - msgstr "" -+"& [-v] [-r] -d DIR\n" -+"\n" -+"Krijon përgjurmimin e nivelit-coredump nga pirgu i bërthamës dhe dyjori " -+"korrenspondues" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 - msgid "Do not hash fingerprints" --msgstr "" -+msgstr "Mos ngatërroni gjurmat e gishtërinjve" - - #. Let user know what's going on - #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 - msgid "Generating core_backtrace" --msgstr "" -+msgstr "Duke gjeneruar bërthamën_përgjurmuese" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 - msgid "Error: GDB did not return any data" --msgstr "" -+msgstr "Gabim: GDB nuk ktheu ndonjë të dhënë" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 - #, c-format - msgid "Error: %s" --msgstr "" -+msgstr "Gabim: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" --msgstr "" -+msgstr "Duke dalë nga komanda e përdoruesit" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format -@@ -859,7 +981,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -867,34 +992,38 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" --msgstr "" -+msgstr "Nuk mund të hapet {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" -+"Referencat coredump {0} skedarët debuginfo, {1} prej tyre nuk është " -+"instaluar" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" --msgstr "" -+msgstr "{0} i skedarëve inforregulluese nuk janë instaluar" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"Konfigurim i paligjshëm i shtimit CCpp, menaxhues Pakete i pambështetur: " -+"'%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" --msgstr "" -+msgstr "Mungon skedari i kërkuar: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" --msgstr "" -+msgstr "Mungon skedari i info rregulluese: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" --msgstr "" -+msgstr "Të gjithë skedarët e info rregulluese janë të disponueshëm" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 - msgid "" -@@ -904,26 +1033,32 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Instalon paketat info rregullimese për ndërtimet e listuara në " -+"NDËRTIMI_SKEDARËVE_IDS tek sistemi i depos ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Jobashkëvepruese, supozo 'Po' te të gjitha pyetjet" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "-nënkupton STDIN, parazgjedhur: NDËRTIMI_SKEDARËVE" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Shkarko vetëm skedarët e specifikuar" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" - msgstr "" -+"Model për t'u përdorur kur të kërkohet për repos, parazgjedhur: *rregullim*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Opsioni i injoruar" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -937,6 +1072,9 @@ msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" -+"A doni të gjeneroni lokalisht një raft gjurmimi? (Kjo mund të shkarkojë një " -+"sasi të madhe të dhënash por raportimi nuk mund të vazhdojë pa një raft " -+"gjurmimi)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -946,172 +1084,181 @@ msgid "" - "SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" -+"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" -+"\n" -+"Fshin dirs (-d) e problemit ose skedarët (-f) në DIRs derisa ata të jenë më " -+"të vegjël se MADHËSIA.\n" -+"SKEDARët janë të ruajtura (nuk fshihen)." - - #: ../src/plugins/abrt-action-trim-files.c:236 - msgid "Delete whole problem directories" --msgstr "" -+msgstr "Fshi të gjitha direktoritë e problemit" - - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "" -+msgstr "Fshiji skedarët brenda kësaj direktorie" - - #: ../src/plugins/abrt-action-trim-files.c:238 - msgid "Preserve this directory" --msgstr "" -+msgstr "Mbro këtë direktori" - - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "" -+msgstr "E pamundur për të filluar '%s', mesazhi i gabimit ishte: '%s'" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "" -+msgstr "Nuk ka numër në skedarin '%s'" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" --msgstr "" -+msgstr "Përdorimi: %s [-v]" - - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" -+"E pamundur për të marrë direktorinë aktuale të punës duke qenë se mund të " -+"jetë fshirë" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "" -+msgstr "Një problem është njoftuar tashmë për këtë problem" - - #: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" --msgstr "" -+msgstr "uReport është dërguar tashmë, nuk do të dërgohet përsëri" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "Duke ju shtuar juve në listën CC të të metave bugzilla ekzistuese" - - #: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" --msgstr "" -+msgstr "raportues-ureport dështoi më kodin dalës %d" - - #: ../src/plugins/abrt-gdb-exploitable:529 - msgid "Signal sent by userspace code" --msgstr "" -+msgstr "Sinjali dërguar nga hapësira e kodit të përdoruesit" - - #: ../src/plugins/abrt-gdb-exploitable:533 - msgid "Signal sent by timer/IO/async event" --msgstr "" -+msgstr "Sinjali dërguar nga eventi kohëmatës/IO/async " - - #: ../src/plugins/abrt-gdb-exploitable:541 - msgid "Signal has siginfo.si_code = SI_USER" --msgstr "" -+msgstr "Sinjali ka siginfo.si_code=SI_USER" - - #: ../src/plugins/abrt-gdb-exploitable:544 - msgid "Signal due to write to closed pipe" --msgstr "" -+msgstr "Sinjali në sajë të shkrimit të një tubi të mbyllur" - - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "" -+msgstr "Sinjali i dërguar nga tastiera" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 - msgid "Job control signal sent by kernel" --msgstr "" -+msgstr "Kontrolli i punës së sinjalit u dërgua nga kernel" - - #: ../src/plugins/abrt-gdb-exploitable:558 - #: ../src/plugins/abrt-gdb-exploitable:587 - msgid "Signal sent by window resize" --msgstr "" -+msgstr "Sinjali u dërgua nga ndryshimi i madhësisë së dritares" - - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "" -+msgstr "Sinjali u dërgua nga përfundimi i alarmit(N) " - - #: ../src/plugins/abrt-gdb-exploitable:583 - msgid "Signal due to write to broken pipe" --msgstr "" -+msgstr "Sinjali në sajë të shkrimit të një tubi të prishur" - - #: ../src/plugins/abrt-gdb-exploitable:607 - msgid "ABRT signal (abort() was called?)" --msgstr "" -+msgstr "Sinjali ABRT (dështoj() u thirr?)" - - #: ../src/plugins/abrt-gdb-exploitable:616 - msgid "XCPU signal (over CPU time limit)" --msgstr "" -+msgstr "Sinjali XCPU (mbi limitin e kohës së CPU)" - - #: ../src/plugins/abrt-gdb-exploitable:620 - msgid "XFSZ signal (over file size limit)" --msgstr "" -+msgstr "Sinjali XFSZ (mbi limitin e madhësisë së skedarit)" - - #: ../src/plugins/abrt-gdb-exploitable:624 - msgid "TRAP signal (can be a bug in a debugger/tracer)" --msgstr "" -+msgstr "Sinjali TRAP (mund të jetë një e metë në rregullues/gjurmues)" - - #: ../src/plugins/abrt-gdb-exploitable:628 - msgid "SYS signal (unknown syscall was called?)" --msgstr "" -+msgstr "Sinjali SYS (u thërrit syscall i panjohur?)" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" --msgstr "" -+msgstr "Përjashtime aritmetike" - - #: ../src/plugins/abrt-gdb-exploitable:637 - msgid "Division by zero" --msgstr "" -+msgstr "Pjesëtimi me zero" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "" -+msgstr "Udhëzime të paligjshme (hidhu në një adresë të rastësishme?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" --msgstr "" -+msgstr "Sinjale të lidhura jo-dështim " - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" --msgstr "" -+msgstr "Tejmbushje e grupit" - - #: ../src/plugins/abrt-gdb-exploitable:656 - msgid "Write to an invalid address" --msgstr "" -+msgstr "Shkruaj në një adresë të palejuar" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" --msgstr "" -+msgstr "Kthimi i nënrutinës në një adresë të palejuar (grup i korruptuar?)" - - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 - msgid "Jump to an invalid address" --msgstr "" -+msgstr "Kërce në një adresë të palejuar" - - #: ../src/plugins/abrt-gdb-exploitable:674 - msgid "" - "Access past the end of mapped file, invalid address, unaligned access, etc" - msgstr "" -+"Akseso fundin e skedarit të mapuar të mëparshëm, adresë e palejuar, aksesim " -+"i paangazhuar, etj" - - #: ../src/plugins/abrt-gdb-exploitable:693 - msgid "Can't get signal no and do exploitability analysis\n" --msgstr "" -+msgstr "Nuk mund të merret sinjali jo dhe bëj analizat e shfrytëzueshme\n" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "" -+msgstr "Arsyeja e mundshme e dështimit:" - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " --msgstr "" -+msgstr "Vlerësimi i shfrytëzueshëm (shkalla 0-9):" - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "" -+msgstr "Udhëzimet e tanishme:" - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" --msgstr "" -+msgstr "Analizat e shfrytëzueshme erdhën bosh\n" - - #: ../src/plugins/abrt-watch-log.c:142 - msgid "" -@@ -1119,10 +1266,14 @@ msgid "" - "\n" - "Watch log file FILE, run PROG when it grows or is replaced" - msgstr "" -+"& [-vs] [-F STR]... PROG SKEDARIT [ARGS]\n" -+"\n" -+"Shiko skedarin trung SKEDAR, aktivizo PROG kur ai të rritet ose të " -+"zevendësohet" - - #: ../src/plugins/abrt-watch-log.c:154 - msgid "Don't run PROG if STRs aren't found" --msgstr "" -+msgstr "Mos aktivizoni PROG nëse STR-të nuk janë gjetur" - - #: ../src/plugins/abrt-dump-oops.c:77 - msgid "" -@@ -1130,11 +1281,14 @@ msgid "" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" -+"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" -+"\n" -+"Shkëput oops nga SKEDARI (ose futja standarte)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "" -+msgstr "Afishimi gjeti oopes në nxjerrjen standarte" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1142,72 +1296,75 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:102 - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" --msgstr "" -+msgstr "Krijo një direktori problemi në DIR për çdo opps të gjetur" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" -+"Njësoj si -d DumpLocation, DumpLocation është specifikuar në abrt.conf" - - #: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" --msgstr "" -+msgstr "Ruaj informacionin e shkëputur në PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 - #: ../src/plugins/abrt-dump-journal-xorg.c:192 - #: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" --msgstr "" -+msgstr "Bëje direktorin e problemit publikisht të lexueshëm" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 - #: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" --msgstr "" -+msgstr "Krijimi i listës së problemeve të mbytura në 1 për sekond" - - #: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" --msgstr "" -+msgstr "Afisho string(jet) e kërkuara tek stdout dhe dilni." - - #: ../src/plugins/abrt-dump-oops.c:127 - #: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" --msgstr "" -+msgstr "Dështoi përpilimi i regex" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Nuk mund të përditësohet probemi: nuk u gjet asnjë oops" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "U gjetën më shumë oopse: shqyrto vetëm të parën" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Dështoi marrja e informacionit të kërkuar nga journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Nuk do të ruhet dështimi i ripërsëritur pas %ds (limiti është %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" -+"Dështoi ruajtja e të dhënave të problemit të gjetur në bazën e të dhënave " -+"abrt" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "Dështoi inicializimi i shikimit të sistemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1220,70 +1377,82 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extract coredumps from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "Krijo një direktori të re për problemet në DIR për çdo coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "Fillo leximin e sistemd-journal nga vendodhja e KURSORIT" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "Fillo leximin e sistemd-journal nga fundi" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Krijimi i listës së problemeve të mbytura në 1 për sekonda INT" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "E njëjtë si -t INT, INT është caktuar në shtojcat/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" -+"Ndiq sistemd-ditar nga vendodhja më e fundit (nëse është në dispozicion)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "Ju duhet të caktoni ose -c KURSOR ose -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "Nuk mund të hapet sistemd-ditar" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" -+"Nuk mund të filtrohet systemd-journal vetëm tek të dhënat systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "Nuk mund të kërkohet në fund të ditarit" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "Dështoi vendosja e kursorit të ditarit-sistemd '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 - #: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "Nuk mund të lexohen të dhënat e ditarit." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1298,36 +1467,47 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Shkurto oppset nga ditari-sistemd\n" -+"\n" -+"alternativat -c dhe -e kanë konflikte sepse të dyja caktojnë mesazhin e parë " -+"të lexuar.\n" -+"\n" -+"-e është e nevojshme për -f sepse ditari i mëposhtëm fillon duke lexuar të " -+"gjithë ditarin nëse vendodhja e fundit e parë nuk është e disponueshme.\n" -+"\n" -+"Vendodhja e parë së fundmi është ruajtur në" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 - #: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Lexo skedarët ditarë nga të gjitha makinat" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 - #: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Lexo të gjithë skedarët ditarë nga direktoria tek SHTEG" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 - #: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Nuk mund të inicializohet ditari-sistemd në direktorin '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" --msgstr "" -+msgstr "Nuk mund të filtrohet ditari-sistemd vetëm në të dhëna kernel" - - #: ../src/plugins/abrt-dump-journal-oops.c:300 - #: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "" -+msgstr "Dështoi fillimi i shikimit nga kursori '%s'" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Dështoi analiza gramatikore e Përgjurmimit nga ditari" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1339,7 +1519,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1350,11 +1530,12 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Printimi gjeti përplasje në informacionin e nxjerrë standard" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Krijo direktori të re për problemet në DIR për çdo përplasje të gjetur" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -@@ -1380,19 +1561,20 @@ msgstr "" - #: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" -+"Printimi gjeti të dhëna me përplasje në informacionin e nxjerrë standard" - - #: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" --msgstr "" -+msgstr "Krijo direktori për problemet në DIR për çdo përplasje të gjetur" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Dështoi marrja e Backtrace nga skedari log" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "" -+msgstr "Nuk mund të ruhet pozicioni i orës së protokollit " - - #: ../src/plugins/abrt-journal.c:284 - #, c-format -@@ -1450,13 +1632,13 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " --msgstr "" -+msgstr "Nuk mund të krijohet një skedar i përkohshëm në" - - #: ../src/plugins/abrt-retrace-client.c:131 - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "" -+msgstr "Nuk mund të ekzekutohet '%s'" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1496,21 +1678,23 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" --msgstr "" -+msgstr "Duke marrë mundësimet e serverit" - - #: ../src/plugins/abrt-retrace-client.c:452 - msgid "The server is fully occupied. Try again later." --msgstr "" -+msgstr "Serveri është i zënë. Ju lutem provoni përsëri më vonë." - - #: ../src/plugins/abrt-retrace-client.c:453 - msgid "The server denied your request." --msgstr "" -+msgstr "Serveri e refuzoi kërkesën tuaj." - - #: ../src/plugins/abrt-retrace-client.c:484 - #: ../src/plugins/abrt-retrace-client.c:500 - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" -+"'%s' duhet të jetë një skedar i rregull në mënyrë që të përdoret serveri " -+"Retrace." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1518,27 +1702,29 @@ msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." - msgstr "" -+"Madhësia e përplasjes suaj është %s, por serveri retrace pranon vetëm " -+"përplasje më të vogla ose të barabarta me %s." - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." --msgstr "" -+msgstr "Serveri nuk i mbështet tarballs xz-të kompresuara." - - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "" -+msgstr "Versioni '%s' nuk është i mbështetur nga serveri Retrace." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." --msgstr "" -+msgstr "Serveri nuk mund të procesojë kërkesën tuaj." - - #: ../src/plugins/abrt-retrace-client.c:600 - msgid "Unknown package sent to Retrace server." --msgstr "" -+msgstr "Paketë e panjohur u dërgua tek serveri Retrace." - - #: ../src/plugins/abrt-retrace-client.c:609 - msgid "Preparing an archive to upload" --msgstr "" -+msgstr "Po përgatitet një arkiv për t'u ngarkuar" - - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format -@@ -1546,183 +1732,197 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" -+"Madhësia e arkivit tuaj është %s, por serveri retrace pranon vetëm arkive më " -+"të vegjël ose të barabartë me %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "Ju do të ngarkoni %s. Dëshironi të vazhdoni?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" --msgstr "" -+msgstr "E anulluar nga përdoruesi" - - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "Duke ngarkuar %s\n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format - msgid "Uploading %d%%\n" --msgstr "" -+msgstr "Duke ngarkuar %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "" -+msgstr "Dështoi leximi nga një transmetim" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format - msgid "Failed to send data: NSS error %d (%s): %s" --msgstr "" -+msgstr "Dështoi dërgimi i të dhënave: gabim NSS %d (%s): %s" - - #: ../src/plugins/abrt-retrace-client.c:745 - msgid "Upload successful" --msgstr "" -+msgstr "Ngarkim i suksesshëm" - - #: ../src/plugins/abrt-retrace-client.c:767 - msgid "" - "Your problem directory is corrupted and can not be processed by the Retrace " - "server." - msgstr "" -+"Direktoria juaj e problemeve është e dëmtuar dhe nuk mund të përpunohet nga " -+"serveri Retrace." - - #: ../src/plugins/abrt-retrace-client.c:769 - msgid "" - "The archive contains malicious files (such as symlinks) and thus can not be " - "processed." - msgstr "" -+"Arkivi përmban skedarë të dëmshëm (si symlinks) dhe për këtë arsye nuk mund " -+"të përpunohet." - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "" -+msgstr "Përgjigje e pavlefshme nga serveri: mungon X-Task-Id." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." --msgstr "" -+msgstr "Përgjigje e pavlefshme nga serveri: mungon X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" --msgstr "" -+msgstr "Puna e retrace nisi" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format - msgid "Task Id: %s\n" - "Task Password: %s\n" --msgstr "" -+msgstr "Id e punës: %s\n" -+"Fjalëkalimi i punës: %s\n" - - #: ../src/plugins/abrt-retrace-client.c:866 - msgid "Invalid response from server: missing X-Task-Status." --msgstr "" -+msgstr "Përgjigje e pavlefshme nga serveri: mungon X-Task-Status." - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format - msgid "Task Status: %s\n" - "%s\n" --msgstr "" -+msgstr "Statusi i punës: %s\n" -+"%s\n" - - #: ../src/plugins/abrt-retrace-client.c:909 - #: ../src/plugins/abrt-retrace-client.c:983 - #: ../src/plugins/abrt-retrace-client.c:1053 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d." --msgstr "" -+msgstr "Dështoi dërgimi i kokës HTTP e gjatësisë %d: gabim NSS %d." - - #: ../src/plugins/abrt-retrace-client.c:1170 - msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" -+"Dështoi retrace. Provoni përsëri më vonë dhe në qoftë se problemi përsëritet " -+"ju lutemi raportojeni këtë problem." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" --msgstr "" -+msgstr "log tek syslog" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" --msgstr "" -+msgstr "lejo lidhje të pasigurtë me serverin retrace" - - #: ../src/plugins/abrt-retrace-client.c:1221 - msgid "" - "do not check whether retrace server is able to process given package before " - "uploading the archive" - msgstr "" -+"mos kontrollo në qoftë se serveri retrace mund të shqyrtojë paketën e dhënë " -+"para se të ngarkohet arkivi" - - #: ../src/plugins/abrt-retrace-client.c:1224 - msgid "retrace server URL" --msgstr "" -+msgstr "URL e serverit retrace" - - #: ../src/plugins/abrt-retrace-client.c:1226 - msgid "retrace server port" --msgstr "" -+msgstr "porta e serverit retrace" - - #: ../src/plugins/abrt-retrace-client.c:1228 - msgid "(debug) show received HTTP headers" --msgstr "" -+msgstr "(debug) trego kokat HTTP të ardhura" - - #: ../src/plugins/abrt-retrace-client.c:1229 - msgid "For create and batch operations" --msgstr "" -+msgstr "Për veprimet e krijimit dhe batch" - - #: ../src/plugins/abrt-retrace-client.c:1231 - msgid "read data from ABRT problem directory" --msgstr "" -+msgstr "lexo të dhëna nga direktoria e problemeve ABRT" - - #: ../src/plugins/abrt-retrace-client.c:1233 - msgid "read data from coredump" --msgstr "" -+msgstr "lexo të dhëna nga coredump" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" --msgstr "" -+msgstr "Shtyje për veprime votimi" - - #: ../src/plugins/abrt-retrace-client.c:1237 - msgid "(debug) do not delete temporary archive created from dump dir in " --msgstr "" -+msgstr "(debug) mos i fshij arkivat e përkohshme të krijuar nga dump dir në" - - #: ../src/plugins/abrt-retrace-client.c:1239 - msgid "For status, backtrace, and log operations" --msgstr "" -+msgstr "Për veprimet e statusit, backtrace dhe log" - - #: ../src/plugins/abrt-retrace-client.c:1241 - msgid "id of your task on server" --msgstr "" -+msgstr "id e detyrës suaj në server" - - #: ../src/plugins/abrt-retrace-client.c:1243 - msgid "password of your task on server" --msgstr "" -+msgstr "fjalëkalimi i detyrës suaj në server" - - #: ../src/plugins/abrt-retrace-client.c:1247 - msgid "" - "abrt-retrace-client [options]\n" - "Operations: create/status/backtrace/log/batch/exploitable" - msgstr "" -+"abrt-retrace-client [mundësitë]\n" -+"Veprimet: krijo/status/backtrace/log/batch/exploitable" - - #: ../src/plugins/abrt-retrace-client.c:1292 - #: ../src/plugins/abrt-retrace-client.c:1298 - msgid "Either problem directory or coredump is needed." --msgstr "" -+msgstr "Problem me direktorinë ose nevojitet coredump." - - #: ../src/plugins/abrt-retrace-client.c:1304 - #: ../src/plugins/abrt-retrace-client.c:1312 - #: ../src/plugins/abrt-retrace-client.c:1320 - #: ../src/plugins/abrt-retrace-client.c:1328 - msgid "Task id is needed." --msgstr "" -+msgstr "Id e detyrës është e nevojshme." - - #: ../src/plugins/abrt-retrace-client.c:1306 - #: ../src/plugins/abrt-retrace-client.c:1314 - #: ../src/plugins/abrt-retrace-client.c:1322 - #: ../src/plugins/abrt-retrace-client.c:1330 - msgid "Task password is needed." --msgstr "" -+msgstr "Fjalëkalimi i detyrës është i nevojshëm." - - #: ../src/plugins/abrt-retrace-client.c:1334 - #, c-format - msgid "Unknown operation: %s." --msgstr "" -+msgstr "Veprim i panjohur: %s." - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 - msgid "Local GNU Debugger" --msgstr "" -+msgstr "Debugger GNU lokal" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" -@@ -1737,7 +1937,7 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" --msgstr "" -+msgstr "Dërgo core dump në serverin e largët retrace për analizim" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" -@@ -1750,19 +1950,19 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 - msgid "Retrace server URL" --msgstr "" -+msgstr "URL e serverit Retrace" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 - msgid "Address of the retrace server" --msgstr "" -+msgstr "Adresa e serverit retrace" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 - msgid "Insecure" --msgstr "" -+msgstr "E pasigurtë" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 - msgid "Whether or not to use insecure connection" --msgstr "" -+msgstr "Të përdoret apo jo lidhja e pasigurtë" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" -@@ -1773,7 +1973,7 @@ msgstr "" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 - msgid "Collect .xsession-errors" --msgstr "" -+msgstr "Mblidh gabimet .xsession" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" -@@ -1787,31 +1987,31 @@ msgstr "" - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." --msgstr "" -+msgstr "Ndodhi një gabim në pjesën e serverit." - - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "" -+msgstr "Një gabim në '%s' ndodhi në pjesën e serverit" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" --msgstr "" -+msgstr "Ndodhi një gabim gjatë lidhjes me serverin" - - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "" -+msgstr "Ndodhi një gabim gjatë lidhjes me '%s'" - - #: ../src/plugins/https-utils.c:97 - #, c-format - msgid "Issuer certificate is invalid: '%s'." --msgstr "" -+msgstr "Certifikata e lëshuesit është e pavlefshme: '%s'." - - #: ../src/plugins/https-utils.c:100 - #, c-format - msgid "Certificate is signed by an untrusted issuer: '%s'." --msgstr "" -+msgstr "Certifikata është e nënshkruar nga një lëshues i pabesuar: '%s'." - - #: ../src/plugins/https-utils.c:103 - #, c-format -@@ -1820,12 +2020,12 @@ msgstr "" - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." --msgstr "" -+msgstr "Certifikata e largët ka skaduar." - - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "" -+msgstr "Lëshuesi i certifikatës nuk është i njohur: '%s'." - - #: ../src/plugins/https-utils.c:113 - #, c-format -@@ -1846,88 +2046,88 @@ msgstr "" - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "" -+msgstr "Nuk mund të zgjidhet emri i host '%s'." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." --msgstr "" -+msgstr "Dështoi vendosja e metodës fole bllokuese" - - #: ../src/plugins/https-utils.c:213 - msgid "Failed to wrap TCP socket by SSL." --msgstr "" -+msgstr "Dështroi mbështjellja e foles TCP nga SSL." - - #: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." --msgstr "" -+msgstr "Dështoi aktivizimi i shtrëngimit të duarve nga klientët në folen SSL." - - #: ../src/plugins/https-utils.c:220 - msgid "Failed to enable SSL3." --msgstr "" -+msgstr "Dështoi aktivizimi i SSL3." - - #: ../src/plugins/https-utils.c:222 - msgid "Failed to enable TLS." --msgstr "" -+msgstr "Dështoi aktivizimi i TLS." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "" -+msgstr "Dështoi vendosja e URL në folen SSL." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "" -+msgstr "Nuk mund të lidhet me '%s'" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "" -+msgstr "Dështoi vendosja e fiksimit të çertifikatës." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." --msgstr "" -+msgstr "Dështoi vendosja e marrjes mbrapsht të shtrëngimit të duarve." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "" -+msgstr "Dështoi rivendosja e shtrëngimit të duarve." - - #: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." --msgstr "" -+msgstr "Dështoi kompletimi i shtrëngimit të duarve SSL: gabim NSS %d." - - #: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." --msgstr "" -+msgstr "Dështoi mbyllja e foles SSL." - - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "" -+msgstr "HTTP e shformuar koka e përgjigjes: '%s'" - - #: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." --msgstr "" -+msgstr "Marrja e të dhënave dështoi: gabim NSS %d." - - #: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." --msgstr "" -+msgstr "Përgjigje e shformuar në copa." - - #: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." --msgstr "" -+msgstr "Dështoi inicializimi i NSS." - - #: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." --msgstr "" -+msgstr "Dështoi inicializimi i modulit të sigurisë." - - #: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." --msgstr "" -+msgstr "Dështoi mbyllja e NSS." - - #: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" --msgstr "" -+msgstr "Duke fjetur për %d sekonda" - - #: ../src/plugins/oops-utils.c:200 - msgid "" -@@ -1955,7 +2155,7 @@ msgstr "" - - #: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" --msgstr "" -+msgstr "Lista e dështimeve ids" - - #: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" -@@ -1963,7 +2163,7 @@ msgstr "" - - #: ../src/plugins/bodhi.c:470 - msgid "Specify a release" --msgstr "" -+msgstr "Specifiko një hedhje" - - #: ../src/plugins/bodhi.c:475 - msgid "" -@@ -1974,16 +2174,16 @@ msgstr "" - - #: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" --msgstr "" -+msgstr "Duke kërkuar për rifreskime" - - #: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" --msgstr "" -+msgstr "Asnjë rifreskim nuk u gjet për këtë paketë" - - #. strbuf_free(q); - #: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" --msgstr "" -+msgstr "Versioni lokal i paketës është më i ri se rifreskimet e disponueshme" - - #: ../src/plugins/bodhi.c:594 - #, c-format -@@ -1991,6 +2191,9 @@ msgid "" - "An update exists which might fix your problem. You can install it by running:" - " %s. Do you want to continue with reporting the bug?" - msgstr "" -+"Ekziston një përditësim që mund të riparojë problemin tuaj. Mund ta " -+"instaloni duke ekzekutuar: %s. Dëshironi të vazhdoni me raportimin e " -+"problemit?" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 - msgid "" -@@ -2001,16 +2204,16 @@ msgstr "" - - #: ../src/hooks/abrt-merge-pstoreoops.c:97 - msgid "Print found oopses" --msgstr "" -+msgstr "Afisho oppses e gjetura" - - #: ../src/hooks/abrt-merge-pstoreoops.c:98 - msgid "Delete files with found oopses" --msgstr "" -+msgstr "Fshi skedarët e gjetur me oppses" - - #: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "" -+msgstr "'%s' identifikon më tepër se një direktori problemi" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -@@ -2018,53 +2221,53 @@ msgstr "" - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" --msgstr "" -+msgstr "Listo problemet [në DIRs]" - - #: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" --msgstr "" -+msgstr "Hiq direktorin e problemit DIR" - - #: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" --msgstr "" -+msgstr "Analizo dhe raporto të dhënat e problemit në DIR" - - #: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" --msgstr "" -+msgstr "Afisho informacionin për DIR" - - #: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" --msgstr "" -+msgstr "Afisho numërimin e dështimeve të tanishme" - - #: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" --msgstr "" -+msgstr "Opero disa probleme" - - #: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" --msgstr "" -+msgstr "Shiko 'abrt-cli KOMAND --ndihmë' për më shumë informacion" - - #: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [options]" - - #: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 - #: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" --msgstr "" -+msgstr "Listo vetëm problemet e paraportuara" - - #. deprecate -d option with --pretty=full - #: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" --msgstr "" -+msgstr "Shfaq raportin e detajuar" - - #: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" --msgstr "" -+msgstr "Listoo vetëm problemet më të fundit se specifikimi i kohëspullë" - - #: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" --msgstr "" -+msgstr "Listoo vetëm problemet më të vjetra se specifikimi i kohëspullë" - - #: ../src/cli/list.c:166 - #, c-format -@@ -2076,193 +2279,199 @@ msgstr "" - - #: ../src/cli/list.c:183 - msgid "& info [options] DIR..." --msgstr "" -+msgstr "& info [options] DIR..." - - #: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" --msgstr "" -+msgstr "Teksti më i madhë se kjo do të fshaqet i shkuartuar" - - #: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "" -+msgstr "Asnjë problem i tillë direktorie '%s'" - - #: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& statusi" - - #: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" --msgstr "" -+msgstr "Afisho vëtëm problemin e numëruar pa asnjë mesazh" - - #: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" --msgstr "" -+msgstr "Afisho vetëm problemet më të fundit se specifikimi i kohëspullë" - - #: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" -+"U gjetën %u problemet e ABRT. Për më shumë info ekzekuto: abrt-cli list%s\n" - - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Nuk mund të gjehet problemi '%s'" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Problemi '%s' nuk mund të raportohet" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" --msgstr "" -+msgstr "Duke fshirë '%s'" - - #: ../src/cli/report.c:79 - msgid "& report [options] DIR..." --msgstr "" -+msgstr "& raport [options] DIR..." - - #: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" --msgstr "" -+msgstr "Hiq PROBLEM_DIR pas raportimit" - - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" --msgstr "" -+msgstr "Veprimet: hiq(hq), info(i), anashkalo(a):" - - #: ../src/cli/process.c:66 - msgid "Actions: remove(rm), report(e), info(i), skip(s):" --msgstr "" -+msgstr "Veprimet: hiq(hq), raporto(e), info(i), anashkalo(a):" - - #: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "" -+msgstr "Duke raportuar '%s'" - - #. dummy must be free because the function ask allocate memory - #: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" --msgstr "" -+msgstr "Për problemin e rradhës shtypni ENTER:" - - #: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" -+"Pa -që prej argumentit, iteracionet mbi të gjitha problemet e gjetura." - - #: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" --msgstr "" -+msgstr "Përzgjedh vetëm problemet e gjetura pas kohëspullë" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Problemi nuk ka përgjurmues" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Fillo proçesin e ripërshkrimit?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Fshaq përgjurmimin e një problemi" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Kjo/Ky" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "E fundit" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" - msgstr "" -+"Problemi {} nuk është i tipit C/C++. Nuk mund të instalohet inforregulluesi" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Leja refuzohet: '{}'\n" -+"Nëse ky është një problem i sistemit provo të ekzekutosh këtë komand si " -+"rrënjë" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Instalo inforregulluesin e kërkuar për problemin e dhënë" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Ekzekuto GDB kundër një problemi" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Formati i nxjerrjes" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Formate të ndërtuara në nxjerrje" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Pa probleme" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Listo problemet" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Afisho informacionin rreth problemit" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Nxit përpara heqjes" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Mos nxisni përpara heqjes" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "A jeni të sigurt që doni të fshini këtë problem?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "U hoq" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Hiqni problemin" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Raporto problemin" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Kryej ripërshkrimin lokal" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Kryej ripërshkrimin në distancë duke përdorur serverin ripërshkrues" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Ripërshkrimi i detyrueshëm edhe nëse përgjurmimi tashmë ekziston" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Problemi e ka tashmë një përgjurmues" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Ekzekuto ripërshkrimin abrt me -f/--forcë për të ripërshkruar përsëri" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Fshaq përgjurmuesin?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Asnjë ripërshkrim i mundshëm për këtë lloj problemi" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2274,39 +2483,41 @@ msgstr "" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Ripërshkrim i largët" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Ripërshkrimi lokal" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Gjenero përgjurmimin nga coredump" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT ka gjetur {} problem(e). Për më shumë informacione ekzekuto: listën " -+"abrt{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Afisho numërimin e dështimeve të tanishme" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Vërteto dhe trego të gjitha problemet e kësaj makine" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Asnjë problem nuk u përputh" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Përputhje ambicioze u specifikuan në rezultatet e disa problemeve:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "E paraportueshme" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -@@ -2327,7 +2538,7 @@ msgstr "" - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" --msgstr "" -+msgstr "Analizo bërthamën VM" - - #: ../src/plugins/analyze_VMcore.xml.in.h:2 - msgid "" -@@ -2342,11 +2553,11 @@ msgstr "" - - #: ../src/plugins/collect_GConf.xml.in.h:1 - msgid "Collect GConf configuration" --msgstr "" -+msgstr "Koleksiono konfigurimet GConf" - - #: ../src/plugins/collect_GConf.xml.in.h:2 - msgid "Save configuration from application's GConf directory" --msgstr "" -+msgstr "Ruaj konfigurimet nga direktoria GConf e aplikacionit" - - #: ../src/plugins/collect_GConf.xml.in.h:3 - msgid "" -@@ -2356,40 +2567,44 @@ msgstr "" - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" --msgstr "" -+msgstr "Koleksiono konfigurimin e skedarëve gjerësi-sistemi vim " - - #: ../src/plugins/collect_vimrc_system.xml.in.h:2 - msgid "Save /etc/vimrc and /etc/gvimrc" --msgstr "" -+msgstr "Ruaj /etj/vimrc dhe /etj/gvimrc" - - #: ../src/plugins/collect_vimrc_system.xml.in.h:3 - msgid "" - "Checks if there are vimrc and gvimrc files in /etc and saves them as " - "system_vimrc and system_gvimrc, respectively." - msgstr "" -+"Kontrollo nëse ka skedarë vimrc dhe gvimrc në /etj dhe i ka ruajtur ata si " -+"sistem_vimrc dhe sistem_gvimrc, respektivisht " - - #: ../src/plugins/collect_vimrc_user.xml.in.h:1 - msgid "Collect yours vim configuration files" --msgstr "" -+msgstr "Koleksiono konfikurimet e vrullshme të skedarëve tuaj" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:2 - msgid "Save .vimrc and .gvimrc from your home directory" --msgstr "" -+msgstr "Ruaj .vimrc dhe .gvimrc nga direktoria e shtëpisë tuaj" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" - "Checks if there are .vimrc and .gvimrc in your home directory and saves them " - "as user_vimrc and user_gvimrc, respectively." - msgstr "" -+"Kontrollo nëse aty ka .vimrc dhe .gvimrc në shtëpinë tuaj dhe ruajini ato si " -+"përdorues_vimrc dhe përdorues_gvimrc, respektivisht" - - #: ../src/plugins/post_report.xml.in.h:1 - msgid "Post report" --msgstr "" -+msgstr "Posto raportin" - - #: ../src/plugins/post_report.xml.in.h:2 - msgid "Executed after the reporting is finished" --msgstr "" -+msgstr "U ekzekutua pasi raportimi u përfundua" - - #: ../src/plugins/post_report.xml.in.h:3 - msgid "Used for updating of the databases" --msgstr "" -+msgstr "U përdor për të rifreskuar bazën e të dhënave" -diff --git a/po/sr.po b/po/sr.po -index 93e82f6..88931d8 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -5,22 +5,23 @@ - # Translators: - # Jiří Moskovčák , 2011 - # Momcilo Medic , 2015. #zanata -+# Marko Kostic , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-09-17 07:58-0400\n" --"Last-Translator: Momcilo Medic \n" -+"PO-Revision-Date: 2016-04-08 02:22-0400\n" -+"Last-Translator: Marko Kostic \n" - "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/sr/)\n" - "Language: sr\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -154,10 +155,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Конфигурациона опција изнад је премештена у Г-подешавања (GSettings) и " -+"склопка је повезана са вредношћу подешавања 'report-technical-problems' " -+"унутар шеме 'org.gnome.desktop.privacy'." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Конфигурациона опција изнад се може подесити у" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -257,19 +261,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Увек" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Никада" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Питај" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Отпреми избачај језгра зарад генерисања повратног трага (backtrace)" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -296,7 +300,7 @@ msgstr "О програму" - msgid "Quit" - msgstr "Излаз" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -306,8 +310,8 @@ msgstr "" - "\n" - "Пошаљи упит бази података пакета и сними име пакета и компоненте" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -318,15 +322,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Директоријум проблема" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Датотека подешавања" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Користи овај директоријум као RPM корен" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -334,29 +338,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "Сачувај метаподатке контејнера" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Корени директоријум за извршавање контејнер команди" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [опције]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Користи NUM као uid клијента" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Записник у syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Додај имена програма у записник" - -@@ -382,7 +386,7 @@ msgstr "Неовлашћен" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Не могу да отворим проблем" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -682,7 +686,7 @@ msgstr "" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Не могу да добавим податке о проблему од abort-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -945,7 +949,7 @@ msgstr "Грешка: GDB није вратио никакве податке" - msgid "Error: %s" - msgstr "Грешка: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Излазим по команди корисника" - -@@ -968,62 +972,43 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Употреба: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"Инсталира debuginfos за све build-id-ове наведене у BUILD_IDS_FILE\n" --"у CACHEDIR, користећи TMPDIR као привремени простор за постављање.\n" --"Старе датотеке у CACHEDIR се бришу све док не постање мањи од SIZE.\n" --"\n" --"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Буди брбљив\n" --" -y Без интеракције, претпостави 'Да' за сва питања\n" --" --ids Подразумевано: build_ids\n" --" --tmpdir Подразумевано: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Подразумевано: /var/cache/abrt-di\n" --" --size_mb Подразумевано: 4096\n" --" --pkgmgr Подразумевано: PackageManager из CCpp.conf или 'dnf'\n" --" -e,--exact Преузми само назначене датотеке\n" --" --repo Шаблон који се користи када се траже ризнице.\n" --" Подразумевано: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Не могу да отворим {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "Coredump помиње {0} debuginfo датотека, {1} од њих није инсталирано" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} debuginfo датотека није инсталирано" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "Неисправно подешавање CCpp додатка, неподржан управник пакетима: '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Недостаје захтевана датотека: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Недостаје debuginfo датотека: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Све debuginfo датотеке су доступне" - -@@ -1046,11 +1031,13 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Преузми само наведене датотеке" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" - msgstr "" -+"Шаблоне које треба користити приликом тражења ризница, подразумевано: " -+"*debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" -@@ -1295,7 +1282,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Направи нови директоријум проблема у DIR за сваки пронађени oops" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1336,28 +1323,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Неуспешно преузимање свих неопходних информација од journald-а" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Не чувам поновне крахове након %ds (граница је %ds)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Неуспешно чување података откривеног проблема у abrt бази података" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Неуспешна иницијализација systemd-journal надзора" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1381,59 +1368,59 @@ msgstr "" - "\n" - "Последња прегледана позиција је сачувана у " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Направи нови директоријум проблема у DIR за сваки coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Почни читање systemd-journal од позиције CURSOR" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Почни читање systemd-journal од краја" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Успори стварање директоријума проблема на један по INT секунди" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Исто као -t INT, INT је назначен у plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Прати systemd-journal од последње виђене позиције (ако је доступна)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Потребно је да назначите или -c CURSOR или -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не могу да отворим systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Не могу да филтрирам systemd-journal на само systemd-coredump податке" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не могу да пређем на крај дневника" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1509,7 +1496,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/sr@latin.po b/po/sr@latin.po -index 43f6459..76e526b 100644 ---- a/po/sr@latin.po -+++ b/po/sr@latin.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "Language: sr@latin\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -259,15 +259,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -278,43 +278,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -843,7 +843,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -866,7 +866,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -874,32 +877,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1152,7 +1155,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1193,28 +1196,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1228,59 +1231,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1346,7 +1349,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/sv.po b/po/sv.po -index e3af612..f158a06 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -27,20 +27,21 @@ - # Göran Uddeborg , 2011, 2013, 2014, 2015. - # $Revision: 1.43 $ - # Göran Uddeborg , 2015. #zanata -+# Göran Uddeborg , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-08-01 11:41-0400\n" -+"PO-Revision-Date: 2016-03-18 06:09-0400\n" - "Last-Translator: Göran Uddeborg \n" - "Language-Team: Swedish \n" - "Language: sv\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -175,10 +176,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Konfigurationsalternativet ovan har flyttats till GSettings och flaggan är " -+"länkad till värdet på inställningen ”report-technical-problems” från schemat " -+"”org.gnome.desktop.privacy”." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Konfigurationsalternativet ovan kan konfigureras i" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -205,6 +209,13 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Minnesdumpsfilen är nödvändig för att gnerera stackspåret som är en tids- " -+"och utrymmeskrävande åtgärd. ABRT tillhandahåller en tjänst som genererar " -+"stackspåret från minnesdumpen men du måste skicka upp minnesdumpen till " -+"denna tjänst. Med alternativet ”Alltid” kommer ABRT alltidk skicka upp " -+"minnesdumpen utan att fråga. Med alternativet ”Aldrig” kommer stackspåret " -+"alltid genereras lokalt. Med alternativet ”Fråga” kommer ABRT alltid fråga " -+"användaren." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -278,19 +289,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Alltid" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Aldrig" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Fråga" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Skicka minnesdump för att generera stackspår" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -317,7 +328,7 @@ msgstr "Om" - msgid "Quit" - msgstr "Avsluta" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -327,8 +338,8 @@ msgstr "" - "\n" - "Fråga paketdatabasen och spara paket- och komponentnamn" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -339,15 +350,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemkatalog" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Konfigurationsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Använd denna katalog som RPM-rot" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -355,29 +366,29 @@ msgstr "& [-v] -d KAT\n" - "\n" - "Spara behållarmetadata" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Rotkatalogen för att köra behållarkommandon" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [flaggor]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Använd NUM som klient-uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logga till syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lägg till programnamn till loggen" - -@@ -403,7 +414,7 @@ msgstr "Inte auktoriserad" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Kan inte öppna problemet" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -473,7 +484,7 @@ msgstr "Logga till syslog även med -d" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n ÖKNING] -e|--event HÄNDELSE KAT…" - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -485,7 +496,7 @@ msgstr "Kommunicera direkt med användaren" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Öka nice-värdet med ÖKNING" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -713,11 +724,11 @@ msgstr "Misslyckades att radera en problemkatalog: %s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo-metodanropet misslyckades: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Kan inte hämpta problemdata från abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -896,35 +907,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "kan inte öppna problemkatalogen ”{0}”" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Fel med problemkatalogen: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "Använder produkten ”{0}” från /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "Använder produkten {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "Använder produktversion {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Dubblett av bugzilla-fel ”nr {0}” hittades" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "Det finns inget bugzilla-fel med ”abrt_hash:{0}”" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Varning: abrt-bodhi stödjer inte produktversion ”Rawhide”" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -981,7 +992,7 @@ msgstr "Fel: GDB gav inte tillbaka någon data" - msgid "Error: %s" - msgstr "Fel: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Avslutar på användarens kommando" - -@@ -1004,66 +1015,46 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Användning: %s [-vy] [--ids=BYGG_ID_FIL] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPKAT] [--cache=CACHEKAT[:FELSÖKNKAT1:FELSÖKNKAT2…]] [--" --"size_mb=STORLEK]\n" --" [-e, --exact=SÖKVÄG[:SÖKVÄG]…]\n" --"\n" --"Installerar felsökningsinformation för alla bygg-idn uppräknade\n" --"BYGG_ID_FIL till CACHEKAT, använder TMPKAT som tillfälligt\n" --"uppsättningsområde. Gamla filer i CACHEKAT raderas till den\n" --"är mindre än STORLEK.\n" --"\n" --"Läser konfigurationen från /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Var utförlig\n" --" -y Icke interaktiv, anta ”Ja” som svar på alla frågor\n" --" --ids Standard: build_ids\n" --" --tmpdir Standard: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"SLUMPSUFFIX\n" --" --cache Standard: /var/cache/abrt-di\n" --" --size_mb Standard: 4096\n" --" --pkgmgr Standard: PackageManager från CCpp.conf eller ”dnf”\n" --" -e,--exact Hämta endast angivna filer\n" --" --repo Mönster att använda vid sökning efter förråd.\n" --" Standard: ”debug”\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Kan inte öppna {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Minnesdumpen refererar {0} felsökningsfiler, {1} av dem är inte installerade" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} av debuginfo-filer är inte installerade" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Felaktig konfiguration av tillägget CCpp, pakethanterare som inte stödjs: " - "”%s”" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Saknar efterfrågad fil: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Saknad felsökningsfil: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Alla felsökningsinformationsfiler är tillgängliga" - -@@ -1075,26 +1066,31 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BYGG_ID_FIL|-i -] [-e SÖKVÄG[:SÖKVÄG]…]\n" -+"\t[-r FÖRRÅD]\n" -+"\n" -+"Installerar debuginfo-paket för alla bygg-id:n uppräknade i BYGG_ID_FIL\n" -+"till ABRT:s system-cache." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Inte interaktiv, anta ”Ja” som svar på alla frågor" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- betyder STDIN, standard: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Hämta endast angivna filer" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Mönster att använda vid sökning efter förråd, standard: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Ingorerad flagga" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1332,7 +1328,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "Skapa ny problemkatalog i KAT för varje oops som hittas" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1367,34 +1363,34 @@ msgstr "Misslyckades att kompilera reguljäruttryck" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "Kan inte uppdatera problemet: inga oops:ar hittades" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Flera oops:ar hittade: bearbeta endast den första" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Misslyckades att få tag i all nödvändig information från journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "Sparar inte krasch so upprepas efter %d s (gränsen är %d s)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Misslyckades att spara data för felupptäckt i abrt-databasen" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Misslyckades att initiera läsning av systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1420,60 +1416,60 @@ msgstr "" - "\n" - "Den senast visade positionen sparas i" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Skapa en ny problemkatalog i KAT för varje minnesdump" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Börja att läsa systemd-journal från MARKÖR-positionen" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Börja att läsa systemd-journal från slutet" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "Stryp skapandet av problemkataloger till 1 per INT sekunder" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Samma som -t INT, INT anges i plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Följ systemd-journal från den senast observerade positionen (om tillgänglig)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "De behöver ange antingen -c MARKÖR eller -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Kan inte öppna systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Kan inte filtrera systemd-journal till endast systemd-coredump-data" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Kan inte söka till slutet på journalen" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1541,7 +1537,7 @@ msgstr "Misslyckades att starta läsning från markören ”%s”" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Misslyckades att tolka anropskedjan från journalen" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1553,7 +1549,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1564,25 +1560,28 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Skriv ut hittade krascher på standard ut" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" --msgstr "" -+msgstr "Skapa en ny problemkatalog i KAT för varje hittad krash" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" --msgstr "" -+msgstr "Journalfilter t.ex. '_COMM=gdm-x-session' (får anges flera gånger)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Ett journalfilter måste anges antingen med parametern -j eller lagras i " -+"filen\n" -+"/etc/abrt/plugins/xorg.conf" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Kan inte filtrera systemd-journal till endast Xorg-data" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1604,7 +1603,7 @@ msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Misslyckades att tolka anropskedjan från loggfilen" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -2290,7 +2289,7 @@ msgstr "”%s” identifierar mer än en problemkatalog" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "Användning: abrt-cli [--authenticate] [--version] KOMMANDO [KAT]…" - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2388,12 +2387,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Kan inte hitta problemet ”%s”" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Problemet ”%s” kan inte rapporteras" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2436,114 +2435,116 @@ msgstr "Väljer endast problem upptäckta efter tidsstämpeln" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "Problemet har ingen anropskedja" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Börja spåra om processen?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Visa anropskedjan för ett problem" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Detta" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Senaste" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "{}-problemet är inte av C/C++-typ. Kan inte installera debuginfo" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Åtkomst nekas: ”{}”\n" -+"Om detta är ett systemproblem försök att köra detta kommando som root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Installera nödvändig debuginfo för det angivna problemet" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Kör GDB mot ett problem" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Utdataformat" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Inbyggt utdataformat" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Inga problem" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Lista problem" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Skriv information om problem" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Fråga före saker tas bort" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Fråga inte före saker tas bort" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Är du säker på att du vill ta bort detta problem?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Borttaget" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Ta bort problem" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Rapportera problem" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Utför en lokal omspårning" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "Utför fjärromspårning med spårservern" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "Framtvinga omspårning även om ett stackspår redan finns" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "Problemet har redan ett stackspår" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "Kör abrt retrace med -f/--force för att spåra om igen" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Visa stackspår?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Ingen omspårning är möjlig för denna problemtyp" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2552,42 +2553,45 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Skicka minnesdump och utför fjärromspårning? (Den kan innehålla känsliga " -+"data.) Om du svarar ”Nej” kommer ett stackspår genereras lokalt. Lokal " -+"omspårning kräver att man hämtar eventuellt stora mängder debuginfo-data" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Fjärromspårning" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Lokal omspårning" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Generera stackspår från minnesdump" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" --msgstr "" -+msgstr "ABRT har hittat {} problem. För mer information kör: abrt list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Skriv ut antalet kraschar nyligen" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Autenticera och visa alla problem på denna maskin" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Inga problem matchade" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Tvetydig matchning angiven som resulterar i flera problem:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Inte rapporterbart" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/ta.po b/po/ta.po -index cef4f2a..3805131 100644 ---- a/po/ta.po -+++ b/po/ta.po -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -25,7 +25,7 @@ msgstr "" - "language/ta/)\n" - "Language: ta\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -292,15 +292,15 @@ msgstr "அறிமுகம்" - msgid "Quit" - msgstr "வெளியேறு" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -311,43 +311,43 @@ msgstr "" - msgid "Problem directory" - msgstr "சிக்கல் கோப்பகம்" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "அமைவாக்கக் கோப்பு" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM ஐ கிளையன்ட் uid ஆகப் பயன்படுத்தவும்" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog க்கு பதியவும்" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "நிரல் பெயர்களை பதிவில் சேர்க்கவும்" - -@@ -974,7 +974,7 @@ msgstr "பிழை: GDB தரவு எதையும் திருப் - msgid "Error: %s" - msgstr "பிழை: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "பயனர் கட்டளையின் படி வெளியேறுகிறது" - -@@ -997,7 +997,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -1005,34 +1008,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} ஐத் திறக்க முடியாது: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "கோர்டம்ப் {0} வழுநீக்கல் தகவல் கோப்புகளைக் குறிக்கிறது, அவற்றில் {1} " - "கோப்புகள் நிறுவப்படவில்லை" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "வழுநீக்கக் கோப்புகளில் {0} நிறுவப்படவில்லை" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "கோரப்பட்ட கோப்பு விடுபட்டுள்ளது: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "விடுப்பட்ட வழுநீக்கல் தகவல் கோப்பு: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "வழுநீக்கல் தகவல் கோப்புகள் அனைத்தும் உள்ளன" - -@@ -1319,7 +1322,7 @@ msgstr "" - "உருவாக்கு" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1363,28 +1366,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1398,59 +1401,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1516,7 +1519,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/te.po b/po/te.po -index a68f9bb..e17369d 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\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/te/)\n" - "Language: te\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -288,15 +288,15 @@ msgstr "గురించి" - msgid "Quit" - msgstr "నిష్క్రమించు" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -307,43 +307,43 @@ msgstr "" - msgid "Problem directory" - msgstr "సమస్య డైరెక్టరీ" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "ఆకృతీకరణ ఫైలు" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ఐచ్చికాలు]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "NUM క్లైంట్ uid వలె వుపయోగించు" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "సిస్‌లాగ్‌కు లాగ్" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరులను జతచేయి" - -@@ -958,7 +958,7 @@ msgstr "దోషం: GDB ఏ దత్తాంశం తిప్పి ఈయ - msgid "Error: %s" - msgstr "దోషం: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "వాడుకరి ఆదేశంపై నిష్క్రమించుచున్నది" - -@@ -981,7 +981,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -989,34 +992,34 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0} తెరువలేదు: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "కోర్‌డంప్ {0} డీబగ్‌యిన్ఫో ఫైళ్ళను పరిశీలించుతోంది, వాటిలో {1} " - "సంస్థాపించబడలేదు" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "డీబగ్‌సమాచార ఫైళ్ళలో {0} సంస్థాపించబడలేదు" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "అభ్యర్ధించిన ఫైళ్ళలో దోరకనివి: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "డీబగ్‌యిన్ఫో ఫైల్ తప్పిపోయింది: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "అన్ని డీబగ్‌యిన్ఫో ఫైళ్ళు అందుబాటులో వున్నాయి" - -@@ -1295,7 +1298,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్త సమస్య డైరెక్టరీను DIR నందు సృష్టించుము" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1337,28 +1340,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1372,59 +1375,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1490,7 +1493,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/tg.po b/po/tg.po -index 28494e3..d2a2982 100644 ---- a/po/tg.po -+++ b/po/tg.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -17,7 +17,7 @@ msgstr "" - "language/tg/)\n" - "Language: tg\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -257,15 +257,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -276,43 +276,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Файли танзимотӣ" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [имконот]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Номҳои барномаҳоро ба журнал илова кунед" - -@@ -841,7 +841,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -864,7 +864,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -872,32 +875,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1150,7 +1153,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1191,28 +1194,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1226,59 +1229,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1344,7 +1347,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/th.po b/po/th.po -index 077c9ba..eaeb3ca 100644 ---- a/po/th.po -+++ b/po/th.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/th/)\n" - "Language: th\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -279,15 +279,15 @@ msgstr "เกี่ยวกับ" - msgid "Quit" - msgstr "ออก" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -298,43 +298,43 @@ msgstr "" - msgid "Problem directory" - msgstr "ไดเรกทอรีปัญหา" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "แฟ้มค่ากำหนด" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "ใช้ NUM เป็น client uid" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "บันทึกไปที่ปูมระบบ" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" - -@@ -904,7 +904,7 @@ msgstr "ข้อผิดพลาด: GDB ไม่ตอบข้อมูล - msgid "Error: %s" - msgstr "ข้อผิดพลาด: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "การเลิกทำตามคำสั่งของผู้ใช้งาน" - -@@ -927,7 +927,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -935,33 +938,33 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "ไม่สามารถเปิด {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Coredump references {0} debuginfo files, {1} ของพวกมันไม่ได้ถูกติดตั้ง" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} ของแฟ้ม debuginfo ไม่ได้ถูกติดตั้ง" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "แฟ้มที่ขอไว้หายไป: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "แฟ้ม debuginfo หายไป: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" - -@@ -1228,7 +1231,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "สร้างไดเรกทอรีปัญหาใหม่ใน DIR สำหรับทุก oops ที่พบ" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1269,28 +1272,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1304,59 +1307,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1422,7 +1425,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/tr.po b/po/tr.po -index 5557193..39911f2 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/tr/)\n" - "Language: tr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -276,15 +276,15 @@ msgstr "Hakkında" - msgid "Quit" - msgstr "Çıkış" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -295,43 +295,43 @@ msgstr "" - msgid "Problem directory" - msgstr "Dİzin problemi" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Yapılandırma dosyası" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [seçenekler]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Sistem günlüğüne kaydet" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Program adlarını günlüğe ekle" - -@@ -860,7 +860,7 @@ msgstr "" - msgid "Error: %s" - msgstr "Hata: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Kullanıcı komutuyla çıkılıyor" - -@@ -883,7 +883,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -891,32 +894,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "{0}: {1} açılmıyor" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1169,7 +1172,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1210,28 +1213,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1245,59 +1248,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1363,7 +1366,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/uk.po b/po/uk.po -index b00aa7b..0e50b08 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -10,21 +10,22 @@ - # Yuri Chornoivan , 2011-2014. - # Yuri Chornoivan , 2014. - # Yuri Chornoivan , 2015. #zanata -+# Yuri Chornoivan , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-20 11:34-0400\n" -+"PO-Revision-Date: 2016-02-19 02:23-0500\n" - "Last-Translator: Yuri Chornoivan \n" - "Language-Team: Ukrainian \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.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -161,10 +162,13 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"Параметр налаштування, вказаний вище, було перенесено до GSettings, а " -+"перемикач пов’язано зі значенням параметра «report-technical-problems» з " -+"таблиці «org.gnome.desktop.privacy»." - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "Параметр налаштування, вказаний вище, можна визначити у" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -191,6 +195,14 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"Для створення даних трасування стека потрібен файл coredump. Сама дія " -+"трасування є доволі тривалою і вибагливою до обсягів пам’яті. У ABRT " -+"передбачено службу для створення даних трасування стека на основі coredump, " -+"але для її роботи слід вивантажити файл coredump на сервер служби. Якщо буде " -+"вибрано варіант «Завжди», ABRT завжди вивантажуватиме дані coredump без " -+"додаткового підтвердження. Якщо буде вибрано варіант «Ніколи», дані " -+"трасування стека завжди створюватимуться локально. Якщо вибрати варіант " -+"«Запитувати», ABRT завжди запитуватиме про дії користувача." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -264,19 +276,19 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "Завжди" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "Ніколи" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "Запитувати" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "Вивантажити coredump для створення даних зворотного трасування" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -303,7 +315,7 @@ msgstr "Відомості" - msgid "Quit" - msgstr "Вийти" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -313,8 +325,8 @@ msgstr "" - "\n" - "Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -325,15 +337,15 @@ msgstr "" - msgid "Problem directory" - msgstr "Проблемний каталог" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "Файл налаштувань" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "Використовувати цей каталог як кореневий для RPM" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -341,29 +353,29 @@ msgstr "& [-v] -d КАТАЛОГ\n" - "\n" - "Зберегти метадані контейнера" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "Кореневий каталог для запуску команд контейнера" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [параметри]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "Використовувати вказане число як uid клієнта" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Записувати до журналу syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Додати назви програм до журналу" - -@@ -389,7 +401,7 @@ msgstr "Не уповноважено" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "Не вдалося відкрити дані проблеми" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -460,7 +472,7 @@ msgstr "Записувати до журналу syslog навіть з пара - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n ЧИСЛО] -e|--event ПОДІЯ КАТАЛОГ..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -472,7 +484,7 @@ msgstr "Обмінюватися даними безпосередньо з ко - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "Зменшувати значення пріоритетності (nice) ЧИСЛО" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -701,11 +713,11 @@ msgstr "Спроба вилучення каталогу проблеми заз - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "Помилка під час виклику методу GetInfo D-Bus: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "Не вдалося отримати дані проблеми з abrt-dbus" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -887,35 +899,35 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "не вдалося відкрити каталог проблеми «{0}»" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "Помилка у назві каталогу проблеми: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "З використанням продукту «{0}» з /etc/os-release." - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "З використанням продукту {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "З використанням версії продукту {0}." - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "Знайдено дублікат вади «#{0}» у bugzilla" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "У bugzilla немає запису вади з «abrt_hash:{0}»" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "Попередження: у abrt-bodhi не передбачено версії продукту «Rawhide»" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -973,7 +985,7 @@ msgstr "Помилка: GDB не повернуто жодних даних" - msgid "Error: %s" - msgstr "Помилка: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "Завершення роботи за бажанням користувача" - -@@ -996,69 +1008,47 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Користування: %s [-vy] [--ids=ФАЙЛ_ІД_ЗБИРАННЯ] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=ТИМЧ_КАТАЛОГ] [--cache=КАТАЛОГ_КЕШУ[:КАТАЛОГ_ДАНИХ_ДІАГН1:" --"КАТАЛОГ_ДАНИХ_ДІАГН2...]] [--size_mb=РОЗМІР]\n" --" [-e, --exact=ШЛЯХ[:ШЛЯХ]...]\n" --"\n" --"Встановлює дані для діагностики для усіх ідентифікаторів збирання\n" --"зі списку у ФАЙЛ_ІД_ЗБИРАННЯ до КАТАЛОГ_КЕШУ, з використанням\n" --"ТИМЧ_КАТАЛОГ для тимчасових даних.\n" --"Застарілі файли у КАТАЛОГ_КЕШУ вилучатимуться, доки розмір\n" --"каталогу не зменшиться до вказаного аргументом РОЗМІР.\n" --"\n" --"Читає налаштування з /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v режим докладних повідомлень\n" --" -y неінтерактивний режим, припускати відповідь «так» на усі " --"питання\n" --" --ids типове значення: build_ids\n" --" --tmpdir типове значення: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache типове значення: /var/cache/abrt-di\n" --" --size_mb типове значення: 4096\n" --" --pkgmgr типове значення: PackageManager з CCpp.conf або «dnf»\n" --" -e,--exact отримати лише вказані файли\n" --" --repo шаблон для пошуку сховищ.\n" --" Типове значення: *debug*\n" -- --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "Не вдалося відкрити {0}: {1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "Дамп ядра посилається на {0} файлів діагностичних даних, {1} з яких не " - "встановлено." - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "{0} з файлів debuginfo не встановлено" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Некоректне налаштування додатка CCpp, непідтримуваний засіб керування " - "пакунками: «%s»" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "Не вистачає такого файла: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "Не вистачає файла діагностичних даних: {0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "Доступні всі файли діагностичних даних" - -@@ -1070,26 +1060,31 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i ФАЙЛ_ІД_ЗБИРАННЯ|-i -] [-e ШЛЯХ[:ШЛЯХ]...]\n" -+"\t[-r СХОВИЩЕ]\n" -+"\n" -+"Встановлює пакунки debuginfo для усіх ідентифікаторів збирання у\n" -+"ФАЙЛ_ІД_ЗБИРАННЯ до загальносистемного кешу ABRT." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "Неінтерактивний режим, відповідь «Так» на усі питання" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- означає STDIN, типове значення: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "Отримати лише вказані файли" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "Шаблон для пошуку у сховищах, типовий: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "Ігнорований параметр" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1340,7 +1335,7 @@ msgstr "" - "аварію (oops)" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1376,35 +1371,37 @@ msgstr "Не вдалося скомпілювати формальний вир - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" - msgstr "" -+"Не вдалося оновити дані проблеми, оскільки не знайдено записів аварій (oops)." -+"" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "Знайдено інші записи аварії (oops): обробка лише першого" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "Не вдалося отримати усі потрібні дані з journald" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - "Не збережено дані повторного аварійного завершення за %d с (обмеження — %d " - "с)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "Не вдалося зберегти дані виявленої проблеми у базі даних abrt" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Не вдалося ініціалізувати спостереження systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1430,63 +1427,63 @@ msgstr "" - "\n" - "Остання позиція спостереження зберігається у " - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "Створювати новий каталог проблеми для кожного знайденого дампу ядра" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Почати читання systemd-journal з позиції КУРСОР" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Почати читання systemd-journal з кінця" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - "Встановлення інтервалу створення каталогу проблеми у значення від 1 до INT " - "секунд" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "Те саме, що і -t INT, INT визначається у plugins/CCpp.conf" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Стежити за systemd-journal з останньої позиції спостереження (якщо така є)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Слід вказати або -c КУРСОР або -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не вдалося відкрити systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "Не вдалося відфільтрувати у systemd-journal лише дані systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не вдалося пересунути курсор до кінця журналу" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1552,7 +1549,7 @@ msgstr "Не вдалося розпочати спостереження з п - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "Не вдалося обробити зворотне трасування з журналу" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1564,7 +1561,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1575,25 +1572,31 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "Вивести знайдені повідомлення про аварії до стандартного виводу" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" - msgstr "" -+"Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " -+"завершення роботи" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" -+"Фільтр журналу, наприклад «_COMM=gdm-x-session» (можна вказати декілька " -+"фільтрів)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" - msgstr "" -+"Фільтр журналу слід вказати або за допомогою параметра -j або у файлі /etc/" -+"abrt/plugins/xorg.conf" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "Не вдалося відфільтрувати у systemd-journal лише дані Xorg" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1618,7 +1621,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "Не вдалося обробити дані зворотного трасування із файла журналу" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 -@@ -2324,6 +2327,7 @@ msgstr "«%s» визначає декілька каталогів пробле - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" -+"Користування: abrt-cli [--authenticate] [--version] КОМАНДА [КАТАЛОГ]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2427,12 +2431,12 @@ msgstr "" - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "Не вдалося знайти запис проблеми «%s»" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "Звітування щодо проблеми «%s» неможливе" - - #: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format -@@ -2476,114 +2480,124 @@ msgstr "Вибирає лише проблеми, виявлені після в - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "У проблеми немає даних зворотного трасування" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "Запустити процес повторного трасування?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "Показати дані зворотного трасування проблеми" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "Ця" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "Остання" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" - msgstr "" -+"Проблема {} не належить до типу C/C++. Встановлення debuginfo неможливе." - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" - msgstr "" -+"Немає доступу: «{}»\n" -+"Якщо ця проблема є загальносистемною, спробуйте виконати цю команду від " -+"імені root" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "Встановити потрібні пакунки debuginfo для вказаної проблеми" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "Запустити GDB для даних проблеми" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "Формат виведення" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "Формат вбудованого виведення" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "Немає проблем" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "Показати список проблем" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "Вивести дані щодо проблеми" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "Запитувати перед вилученням" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "Не запитувати перед вилученням" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "Ви справді хочете вилучити дані цієї проблеми?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "Вилучено" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "Вилучити дані проблеми" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "Повідомити про проблему" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "Виконати локальне повторне трасування" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" - msgstr "" -+"Виконати віддалене повторне трасування за допомогою сервера повторного " -+"трасування" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" - msgstr "" -+"Примусове повторне трасування, навіть якщо дані зворотного трасування вже " -+"існують" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "У проблеми вже є зворотне трасування" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" - msgstr "" -+"Для повторного трасування віддайте команду abrt retrace із параметром -f/--" -+"force" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "Показати дані зворотного трасування?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "Для цього типу проблем повторне трасування неможливе" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2592,42 +2606,48 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"Вивантажити дамп ядра і виконати віддалене повторне трасування? (Вивантажені " -+"дані можуть містити конфіденційну інформацію). Якщо буде дано відповідь " -+"«Ні», трасування стека буде створено локально. Локальне повторне трасування " -+"потребує отримання потенційно доволі об’ємного пакета даних debuginfo." - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "Віддалене повторне трасування" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "Локальне повторне трасування" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "Створити зворотне трасування на основі coredump" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" - msgstr "" -+"ABRT виявлено записи проблем {}. Докладніші дані може бути отримано за " -+"допомогою такої команди: abrt-cli list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "Вивести кількість нещодавніх аварійних завершень роботи" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "Пройти розпізнавання і показати усі проблеми на цьому комп’ютері" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "Не встановлено відповідності жодній проблемі" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "Вказана неоднозначна відповідність призвела до декількох проблем:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "Непридатний для звітування" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/ur.po b/po/ur.po -index 9eae788..f90e7e9 100644 ---- a/po/ur.po -+++ b/po/ur.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/ur/)\n" - "Language: ur\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -258,15 +258,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -277,43 +277,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -842,7 +842,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -865,7 +865,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -873,32 +876,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1151,7 +1154,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1192,28 +1195,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1227,59 +1230,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1345,7 +1348,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/vi.po b/po/vi.po -index a4a6fac..3ae3eba 100644 ---- a/po/vi.po -+++ b/po/vi.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/vi/)\n" - "Language: vi\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -258,15 +258,15 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -277,43 +277,43 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" - msgstr "" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -844,7 +844,7 @@ msgstr "" - msgid "Error: %s" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "" - -@@ -867,7 +867,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -875,32 +878,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "" - -@@ -1153,7 +1156,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1194,28 +1197,28 @@ msgstr "" - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1229,59 +1232,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1347,7 +1350,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -diff --git a/po/zh_CN.po b/po/zh_CN.po -index 0fad725..e4072c7 100644 ---- a/po/zh_CN.po -+++ b/po/zh_CN.po -@@ -23,29 +23,31 @@ - # yusuf , 2011 - # Zamir SUN , 2013 - # Leah Liu , 2015. #zanata -+# Leah Liu , 2016. #zanata -+# mosquito , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-09 07:47-0500\n" -+"PO-Revision-Date: 2016-03-31 12:33-0400\n" - "Last-Translator: Leah Liu \n" - "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-" - "abrt/language/zh_CN/)\n" - "Language: zh-CN\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "问题报告" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "查看并报告应用程序崩溃" - - #: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format -@@ -64,7 +66,7 @@ msgstr "无法关闭通知:%s" - - #: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "哎呀!" - - #: ../src/applet/applet.c:616 - msgid "Report" -@@ -72,21 +74,21 @@ msgstr "报告" - - #: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "重新开始" - - #: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." --msgstr "" -+msgstr "很抱歉, 程序似乎 %s 已崩溃。该问题已被自动报告。" - - #: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." --msgstr "" -+msgstr "很抱歉, 程序似乎 %s 已崩溃. 当网络可用时, 该问题将被报告。" - - #: ../src/applet/applet.c:705 ../src/applet/applet.c:719 - #: ../src/applet/applet.c:747 -@@ -94,32 +96,32 @@ msgstr "" - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." --msgstr "" -+msgstr "很抱歉, 程序似乎 %s 已崩溃。如果您要报告该问题, 请联系开发者。" - - #: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." --msgstr "" -+msgstr "很抱歉, 程序似乎 %s 已崩溃。如果您希望帮助解决该问题, 请发送报告。" - - #: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." --msgstr "" -+msgstr "很抱歉, 这可能是由某个组件的错误导致的。该问题已被自动报告。" - - #: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." --msgstr "" -+msgstr "很抱歉, 这可能是由某个组件的错误导致的. 当网络可用时, 问题将被报告." - - #: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." --msgstr "" -+msgstr "很抱歉, 程序似乎发生了问题. 如果您希望帮助解决该问题, 请发送报告." - - #: ../src/applet/applet.c:786 - #, c-format -@@ -157,10 +159,12 @@ msgid "" - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"上述配置选项已移至 GSettings,并将开关关联至架构 'org.gnome.desktop.privacy' 指定设置 'report-" -+"technical-problems' 值。" - - #: ../src/configuration-gui/abrt-config-widget.c:501 - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "可将以上配置选项配置为" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -187,6 +191,9 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"核心转储文件对于生成堆栈跟踪信息, 这种在时间和空间上开销较大的操作来说是很有必要的. ABRT 提供从 Coredump 生成堆栈跟踪信息的服务, " -+"但您必须上传核心转储到该服务. 使用 'Always' 选项, ABRT 将总是上传转储信息而不询问. 使用 'Never' 选项, " -+"堆栈跟踪信息将记录在本地. 使用 'Ask' 选项, ABRT 将询问用户是否上传." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -243,19 +250,19 @@ msgstr "不完整的问题通常在电脑关机或用户登出时产生。为了 - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "总是" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" --msgstr "" -+msgstr "从不" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "询问" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "为追踪问题上传核心转储" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -268,7 +275,7 @@ msgstr "默认(_D)" - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "配置错误报告" -+msgstr "Ba配置错误报告" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" -@@ -282,15 +289,17 @@ msgstr "关于" - msgid "Quit" - msgstr "退出" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" --msgstr "" -+msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"查询包数据库并保存包和组件名称" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -301,43 +310,45 @@ msgstr "" - msgid "Problem directory" - msgstr "问题目录" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "配置文件" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "使用此目录作为 RPM 根目录" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"保存容器元数据" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "运行容器命令的根目录" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "使用 NUM 作为客户端 UID" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "记录至 syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "在日志中添加程序名" - -@@ -363,7 +374,7 @@ msgstr "未授权" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "无法打开问题" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -426,7 +437,7 @@ msgstr "即使加入 -d 选项也记录至 syslog" - - #: ../src/daemon/abrt-handle-event.c:394 - msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." --msgstr "" -+msgstr "& [-v -i -n 递增] -e|--event 事件 目录..." - - #: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" -@@ -438,7 +449,7 @@ msgstr "直接联系用户" - - #: ../src/daemon/abrt-handle-event.c:405 - msgid "Increment the nice value by INCREMENT" --msgstr "" -+msgstr "通过 INCREMENT 递增 nice 值" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -681,11 +692,11 @@ msgstr "删除问题目录失败:%s" - #: ../src/lib/problem_api_dbus.c:131 - #, c-format - msgid "D-Bus GetInfo method call failed: %s" --msgstr "" -+msgstr "D-Bus GetInfo 方法调用失败: %s" - - #: ../src/lib/problem_api_dbus.c:166 - msgid "Can't get problem data from abrt-dbus" --msgstr "" -+msgstr "无法从 abrt-dbus 获取问题数据" - - #: ../src/lib/problem_api_dbus.c:193 - #, c-format -@@ -700,7 +711,7 @@ msgstr "无法从 abrt-dbus 中获取问题数据:%s" - #: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "无法测试在 abrt-dbus 中是否存在元素: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -794,6 +805,8 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"报告的回溯不包含足够的有意义的函数信息。这很恼人,但回溯也不会造成不必要的信号问题。ABRT 将不允许您在 bug " -+"跟踪系统创建报告,但您可以通过电子邮件联系内核维护者。" - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -853,35 +866,35 @@ msgstr "内核日志表明已探测到硬件错误。\n" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "无法打开问题目录 '{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "问题目录错误: {0}" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." --msgstr "" -+msgstr "从 /etc/os-release 获取产品 '{0}'。" - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "使用产品 {0}。" - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "使用产品版本 {0}。" - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" --msgstr "" -+msgstr "已发现重复的 Bugzilla 错误 '#{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:135 - msgid "There is no bugzilla bug with 'abrt_hash:{0}'" --msgstr "" -+msgstr "无 Bugzilla 错误 'abrt_hash:{0}'" - - #: ../src/plugins/abrt-action-find-bodhi-update:140 - msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" --msgstr "" -+msgstr "警告: abrt-bodhi 不支持产品版本 'Rawhide'" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -935,7 +948,7 @@ msgstr "错误: GDB 为返回" - msgid "Error: %s" - msgstr "错误: %s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "由于用户指令,正在退出" - -@@ -958,7 +971,10 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" -@@ -966,32 +982,32 @@ msgid "" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "无法打开 {0}:{1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "核心转储需要 {0} 个 debuginfo 软件包,其中有 {1} 个尚未安装" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "未安装 debuginfo 的 {0} 文件" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" --msgstr "" -+msgstr "无效的 CCpp 插件配置, 不支持软件包管理器: '%s'" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "缺少所需文件:{0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "缺少 debuginfo 文件:{0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "所有调试信息文件均可用。" - -@@ -1003,39 +1019,44 @@ msgid "" - "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" - "ABRT system cache." - msgstr "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"为所有 BUILD_IDS_FILE 中列出的 build-ids 安装 debuginfo 软件包至\n" -+"ABRT 系统缓存." - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 - msgid "Noninteractive, assume 'Yes' to all questions" --msgstr "" -+msgstr "非交互式, 假设所有问题为 'Yes'" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 - msgid "- means STDIN, default: build_ids" --msgstr "" -+msgstr "- 指标准输入, 默认: build_ids" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "仅下载指定文件" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" --msgstr "" -+msgstr "当搜索库时使用该模式匹配, 默认: *debug*" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "忽略选项" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." --msgstr "可以上传核心转储了吗(可能包含敏感数据)?如果您的回答为“否”,则会在本地生成一个栈跟踪(可能会下载大量数据)。" -+msgstr "是否上传核心转储信息(可能包含敏感数据)?如果您的回答为 '否', 则会在本地生成堆栈跟踪信息 (可能会下载大量数据)。" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." --msgstr "您想在本地生成一个栈跟踪吗?(这可能会下载大量数据,但没有栈跟踪就无法继续报告问题)。" -+msgstr "您想在本地生成一个堆栈跟踪信息吗? (这可能会下载大量数据, 但不生成堆栈跟踪就无法继续报告问题)。" - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -1097,7 +1118,7 @@ msgstr "已发送 uReport,请不要再次发送。" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "添加您到现有 Bugzilla bug 的 CC 列表" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1259,7 +1280,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1295,34 +1316,34 @@ msgstr "编译正则表达式失败" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "无法更新问题: 未找到" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" --msgstr "" -+msgstr "找到更多 oops:只处理第一个 oops" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "未能从 journald 获得所有需要的信息" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "在 %ds 后 (上限为 %ds) 不保存重复的崩溃" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "无法在 abrt 数据库中保存检测的问题数据" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "无法初始化 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1335,70 +1356,79 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"从 systemd-journal 提取核心转储信息\n" -+"\n" -+"-c 和 -e 选项冲突,因为这两个选项指定首次读取的信息。\n" -+"\n" -+"-e 只用于 -f 选项,如果最后查看的位置不可用,-f 选项将读取整个日志。\n" -+"\n" -+"最后查看的位置保存在" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "在 DIR 目录为每个核心转储创建新的问题目录" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "开始从 CURSOR 位置读取 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "开始从结尾读取 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "将创建问题目录的数量限制为每 INT 秒一个目录" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "与 -t INT 选项类似, INT 可在 plugins/CCpp.conf 中指定" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" --msgstr "" -+msgstr "从上次查看的位置 (如果可用) 查看 systemd-journal 日志" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "您需要指定 -c CURSOR 或 -e 选项" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "无法打开 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" --msgstr "" -+msgstr "不能过滤 systemd-journal 日志为 systemd-coredump 数据" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "不能找到日志结尾" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "无法设置 systemd-journal 光标 '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 - #: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "无法读取日志数据." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1413,36 +1443,45 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"从 systemd-journal 提取 oops 信息\n" -+"\n" -+"-c 和 -e 选项冲突,因为这两个选项指定首次读取的信息。\n" -+"\n" -+"-e 只用于 -f 选项,如果最后查看的位置不可用,-f 选项将读取整个日志。\n" -+"\n" -+"最后查看的位置保存在" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 - #: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "从所有机器读取日志文件" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 - #: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "从 PATH 目录中读取所有日志文件" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 - #: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "无法在 '%s' 目录中初始化 systemd-journal" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" --msgstr "" -+msgstr "不能过滤 systemd-journal 为内核数据" - - #: ../src/plugins/abrt-dump-journal-oops.c:300 - #: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "" -+msgstr "无法从光标 '%s' 开始查看" - - #: ../src/plugins/abrt-dump-journal-xorg.c:61 - msgid "Failed to parse Backtrace from journal" --msgstr "" -+msgstr "无法从日志解析回溯" - - #: ../src/plugins/abrt-dump-journal-xorg.c:143 - #, c-format -@@ -1454,7 +1493,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" -@@ -1465,25 +1504,25 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-xorg.c:189 - msgid "Print found crashes on standard output" --msgstr "" -+msgstr "输出发现的崩溃信息至标准输出" - - #: ../src/plugins/abrt-dump-journal-xorg.c:190 - msgid "Create new problem directory in DIR for every crash found" --msgstr "" -+msgstr "在 DIR 为每个已找到的崩溃创建新的问题目录" - - #: ../src/plugins/abrt-dump-journal-xorg.c:199 - msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" --msgstr "" -+msgstr "日志过滤器,例如 '_COMM=gdm-x-session' (可指定多次)" - - #: ../src/plugins/abrt-dump-journal-xorg.c:265 - msgid "" - "Journal filter must be specified either by parameter -j or stored in /etc/" - "abrt/plugins/xorg.conf file" --msgstr "" -+msgstr "日志过滤器所需的参数必须通过 -j 或在 /etc/abrt/plugins/xorg.conf 文件中指定" - - #: ../src/plugins/abrt-dump-journal-xorg.c:282 - msgid "Cannot filter systemd-journal to Xorg data only" --msgstr "" -+msgstr "无法过滤 systemd-journal 为仅显示 Xorg 数据" - - #: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" -@@ -1504,55 +1543,55 @@ msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" - - #: ../src/plugins/abrt-dump-xorg.c:108 - msgid "Failed to parse Backtrace from log file" --msgstr "" -+msgstr "无法从日志文件解析回溯" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "" -+msgstr "无法保存日志查看的位置" - - #: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" --msgstr "" -+msgstr "无法保存日志查看的位置: open('%s')" - - #. Only notice because this is expected - #: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" --msgstr "" -+msgstr "不能恢复日志查看的位置: 文件 '%s' 不存在" - - #: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" --msgstr "" -+msgstr "无法从 '%s' 文件恢复日志查看的位置" - - #: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" --msgstr "" -+msgstr "无法恢复日志查看的位置: 路径 '%s' 不是常规文件" - - #: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" --msgstr "" -+msgstr "无法恢复日志查看的位置: 文件 '%s' 超过 %dB 大小限制" - - #: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" --msgstr "" -+msgstr "无法恢复日志查看的位置: open('%s')" - - #: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" --msgstr "" -+msgstr "无法恢复日志查看的位置: 无法读取整个文件 '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode - #: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "" -+msgstr "不能从文件 '%s' 移动日志至光标" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" -@@ -1573,7 +1612,7 @@ msgstr "无法创建临时文件" - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "无法执行 ”%s“" -+msgstr "无法执行 '%s'" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1636,7 +1675,7 @@ msgstr "'%s' 必须是常规文件才可使用追溯服务器。" - msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." --msgstr "" -+msgstr "您的崩溃大小为 %s,但追溯服务器只接受崩溃小于或等于 %s 的文件。" - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." -@@ -1664,12 +1703,12 @@ msgstr "正在准备上传的归档" - msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." --msgstr "" -+msgstr "您归档文件的大小为 %s,但追溯服务器只接受归档小于或等于 %s 的文件。" - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "您将要上传 %s。继续?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" -@@ -1678,7 +1717,7 @@ msgstr "用户已取消" - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "正在上传 %s\n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format -@@ -1856,8 +1895,7 @@ msgid "" - "Needs to downloads debuginfo packages, which might take significant time, " - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." --msgstr "" --"需要下载 debuginfo 软件包,这可能需要花较长时间并占用很多磁盘空间。然而和追溯服务器不同的是,它不需要发送核心转储至远程服务器上。" -+msgstr "需要下载 debuginfo 软件包,这可能需要花较长时间并占用很多磁盘空间。然而和追溯服务器不同的是,它不需要发送核心转储至远程服务器。" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" -@@ -1911,7 +1949,7 @@ msgstr "从 ~/.xsession-errors 文件保存有关行" - msgid "" - "Scans through ~/.xsession-errors file and saves those lines which contain " - "executable's name. The result is saved as 'xsession_errors' element." --msgstr "扫描 ~/.xsession-errors 文件并保存包含可执行文件名称的行。结果已存为 'xsession_errors' 元素。" -+msgstr "扫描 ~/.xsession-errors 文件并保存包含可执行文件名称的行。结果作为 'xsession_errors' 元素被保存。" - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." -@@ -2063,7 +2101,7 @@ msgstr "休眠 %d 秒" - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." --msgstr "由于 BIOS 出错出现内核问题。遗憾的是内核维护者尚未解决这个问题。" -+msgstr "由于 BIOS 出错导致出现内核问题。遗憾的是内核维护者尚未解决这个问题。" - - #: ../src/plugins/oops-utils.c:205 - msgid "" -@@ -2149,7 +2187,7 @@ msgstr "'%s' 标识出多于一个问题目录" - - #: ../src/cli/abrt-cli.c:130 - msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." --msgstr "" -+msgstr "用法: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - - #: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" -@@ -2182,7 +2220,7 @@ msgstr "详情请查看 'abrt-cli COMMAND --help'" - - #: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [options]" - - #: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 - #: ../src/cli-ng/abrtcli/cli.py:264 -@@ -2227,7 +2265,7 @@ msgstr "没有问题目录 '%s'" - - #: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - - #: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" -@@ -2245,12 +2283,12 @@ msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt - #: ../src/cli/report.c:34 - #, c-format - msgid "Can't find problem '%s'" --msgstr "" -+msgstr "无法发现问题 '%s'" - - #: ../src/cli/report.c:42 - #, c-format - msgid "Problem '%s' cannot be reported" --msgstr "" -+msgstr "问题 '%s' 不能被报告" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/report.c:63 ../src/cli/process.c:70 -@@ -2302,114 +2340,115 @@ msgstr "只选择时间戳之后探测到的问题" - - #: ../src/cli-ng/abrtcli/cli.py:33 - msgid "Problem has no backtrace" --msgstr "" -+msgstr "问题没有回溯" - - #: ../src/cli-ng/abrtcli/cli.py:35 - msgid "Start retracing process?" --msgstr "" -+msgstr "开始进行回溯?" - - #: ../src/cli-ng/abrtcli/cli.py:40 - msgid "Show backtrace of a problem" --msgstr "" -+msgstr "显示问题的回溯" - - #: ../src/cli-ng/abrtcli/cli.py:50 - msgid "This" --msgstr "" -+msgstr "这个" - - #: ../src/cli-ng/abrtcli/cli.py:52 - msgid "Last" --msgstr "" -+msgstr "最后" - - #: ../src/cli-ng/abrtcli/cli.py:54 - msgid "{} problem is not of a C/C++ type. Can't install debuginfo" --msgstr "" -+msgstr "{} 问题不是一个 C/C++ 类型。不能安装 debuginfo 软件包" - - #: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 - msgid "" - "Permission denied: '{}'\n" - "If this is a system problem try running this command as root" --msgstr "" -+msgstr "权限被拒绝: '{}'\n" -+"如果是系统问题,请尝试以 root 运行这个命令" - - #: ../src/cli-ng/abrtcli/cli.py:71 - msgid "Install required debuginfo for given problem" --msgstr "" -+msgstr "为指定问题安装所需的 debuginfo 软件包" - - #: ../src/cli-ng/abrtcli/cli.py:106 - msgid "Run GDB against a problem" --msgstr "" -+msgstr "对问题运行 GDB" - - #: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 - msgid "Output format" --msgstr "" -+msgstr "输出格式" - - #: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 - msgid "Built-in output format" --msgstr "" -+msgstr "内置输出格式" - - #: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 - msgid "No problems" --msgstr "" -+msgstr "无问题" - - #: ../src/cli-ng/abrtcli/cli.py:147 - msgid "List problems" --msgstr "" -+msgstr "问题列表" - - #: ../src/cli-ng/abrtcli/cli.py:167 - msgid "Print information about problem" --msgstr "" -+msgstr "打印有关问题的信息" - - #: ../src/cli-ng/abrtcli/cli.py:173 - msgid "Prompt before removal" --msgstr "" -+msgstr "清除前提示" - - #: ../src/cli-ng/abrtcli/cli.py:174 - msgid "Do not prompt before removal" --msgstr "" -+msgstr "清除前不提示" - - #. force prompt for last problem to avoid accidents - #: ../src/cli-ng/abrtcli/cli.py:182 - msgid "Are you sure you want to delete this problem?" --msgstr "" -+msgstr "您确定要删除这个问题?" - - #: ../src/cli-ng/abrtcli/cli.py:186 - msgid "Removed" --msgstr "" -+msgstr "已删除" - - #: ../src/cli-ng/abrtcli/cli.py:188 - msgid "Remove problem" --msgstr "" -+msgstr "删除问题" - - #: ../src/cli-ng/abrtcli/cli.py:199 - msgid "Report problem" --msgstr "" -+msgstr "报告问题" - - #: ../src/cli-ng/abrtcli/cli.py:204 - msgid "Perform local retracing" --msgstr "" -+msgstr "执行本地回溯" - - #: ../src/cli-ng/abrtcli/cli.py:206 - msgid "Perform remote retracing using retrace server" --msgstr "" -+msgstr "使用回溯服务器进行远程回溯" - - #: ../src/cli-ng/abrtcli/cli.py:208 - msgid "Force retracing even if backtrace already exists" --msgstr "" -+msgstr "强制回溯即使回溯已存在" - - #: ../src/cli-ng/abrtcli/cli.py:223 - msgid "Problem already has a backtrace" --msgstr "" -+msgstr "问题已经存在回溯" - - #: ../src/cli-ng/abrtcli/cli.py:224 - msgid "Run abrt retrace with -f/--force to retrace again" --msgstr "" -+msgstr "使用 -f/--force 选项运行 abrt 再次进行回溯" - - #: ../src/cli-ng/abrtcli/cli.py:225 - msgid "Show backtrace?" --msgstr "" -+msgstr "显示回溯?" - - #: ../src/cli-ng/abrtcli/cli.py:229 - msgid "No retracing possible for this problem type" --msgstr "" -+msgstr "该问题类型没有可能的回溯" - - #: ../src/cli-ng/abrtcli/cli.py:233 - msgid "" -@@ -2418,42 +2457,44 @@ msgid "" - "Local retracing requires downloading potentially large amount of debuginfo " - "data" - msgstr "" -+"上传核心转储信息并确认执行远程回溯 (可能包含敏感数据)? 如果回答 'No',将会在本地生成堆栈跟踪信息。 本地回溯可能需要下载大量的 " -+"debuginfo 数据" - - #: ../src/cli-ng/abrtcli/cli.py:248 - msgid "Remote retracing" --msgstr "" -+msgstr "远程回溯" - - #: ../src/cli-ng/abrtcli/cli.py:251 - msgid "Local retracing" --msgstr "" -+msgstr "本地回溯" - - #: ../src/cli-ng/abrtcli/cli.py:255 - msgid "Generate backtrace from coredump" --msgstr "" -+msgstr "从核心转储生成回溯" - - #: ../src/cli-ng/abrtcli/cli.py:280 - msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" --msgstr "" -+msgstr "ABRT 已检测 {} 问题。了解更多信息,请运行: abrt list{}" - - #: ../src/cli-ng/abrtcli/cli.py:283 - msgid "Print count of the recent crashes" --msgstr "" -+msgstr "打印最近的崩溃次数" - - #: ../src/cli-ng/abrtcli/cli.py:292 - msgid "Authenticate and show all problems on this machine" --msgstr "" -+msgstr "验证并显示本机的所有问题" - - #: ../src/cli-ng/abrtcli/match.py:96 - msgid "No problem(s) matched" --msgstr "" -+msgstr "未匹配问题" - - #: ../src/cli-ng/abrtcli/match.py:116 - msgid "Ambiguous match specified resulting in multiple problems:" --msgstr "" -+msgstr "指定不明确的匹配会导致多个问题:" - - #: ../src/cli-ng/abrtcli/utils.py:78 - msgid "Not reportable" --msgstr "" -+msgstr "不可报告" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -@@ -2471,6 +2512,9 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"上传核心转储至服务器,由服务器生成并返回回溯结果。如果用户不想上传核心转储,也可以执行本地分析。如果远程分析失败本地分析会运行事件。优点:无需下载 " -+"debuginfo 软件包;追溯服务器的 debuginfo " -+"数据库更加完整;追溯服务器可以生成更好的回溯。缺点:您上传的核心转储包含崩溃程序的所有数据,如果有私人数据,也将会包含在其中。" - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" -diff --git a/po/zh_TW.po b/po/zh_TW.po -index 8c51262..9f04c0f 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -7,23 +7,25 @@ - # Chester Cheng , 2012 - # Jiří Moskovčák , 2011 - # Terry Chuang , 2011-2013 --# Chester Cheng , 2015. #zanata -+# Chester Cheng , 2015. #zanata - # Ding-Yi Chen , 2016. #zanata -+# Jakub Filak , 2016. #zanata -+# 張仁傑 , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2016-02-11 12:54+0100\n" -+"POT-Creation-Date: 2016-07-14 09:45+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2016-02-01 06:25-0500\n" --"Last-Translator: Ding-Yi Chen \n" -+"PO-Revision-Date: 2016-07-14 05:46-0400\n" -+"Last-Translator: Jakub Filak \n" - "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" - "abrt/language/zh_TW/)\n" - "Language: zh-TW\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.8.2\n" -+"X-Generator: Zanata 3.8.4\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -138,15 +140,19 @@ msgstr "& [-v] [DIR]...\n" - "新問題被 ABRT 偵測到時通知使用者的面板程式\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 -+#, fuzzy - msgid "" - "The configuration option above has been moved to GSettings and the switch is " - "linked to the value of the setting 'report-technical-problems' from the " - "schema 'org.gnome.desktop.privacy'." - msgstr "" -+"上述的配置選項已被移動,GSettings並且開關被連接到該設置的值,報告技術-問題\n" -+"從架構org.gnome.desktop.privacy" - - #: ../src/configuration-gui/abrt-config-widget.c:501 -+#, fuzzy - msgid "The configuration option above can be configured in" --msgstr "" -+msgstr "配置選項可以在被配置以上" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -173,6 +179,7 @@ msgid "" - "With option 'Never' the stack trace will be always generated locally. With " - "option 'Ask' ABRT will always ask the user." - msgstr "" -+"核心轉儲文件,為了發生堆疊這是時間和空間的耗時的操作,ABRT提供了一個服務產生從核心轉儲的堆疊,但你必須將信息轉儲上傳到該服務,選項:不經詢問總是上傳核心轉儲,選項:從不這個堆疊將會總是在本地產生,選項:問ABRT總是詢問使用者" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -230,7 +237,7 @@ msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用 - - #: ../src/configuration-gui/abrt-config-widget.glade.h:14 - msgid "Always" --msgstr "" -+msgstr "總是" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:15 - msgid "Never" -@@ -238,11 +245,12 @@ msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:16 - msgid "Ask" --msgstr "" -+msgstr "詢問" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+#, fuzzy - msgid "Upload coredump for backtrace generation" --msgstr "" -+msgstr "上傳核心文件從回遡上一代" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -269,7 +277,7 @@ msgstr "關於" - msgid "Quit" - msgstr "退出" - --#: ../src/daemon/abrt-action-save-package-data.c:393 -+#: ../src/daemon/abrt-action-save-package-data.c:440 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -278,8 +286,8 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "查詢軟體包資料庫,並儲存軟體包與組件名稱" - --#: ../src/daemon/abrt-action-save-package-data.c:406 --#: ../src/daemon/abrt-action-save-container-data.c:210 -+#: ../src/daemon/abrt-action-save-package-data.c:453 -+#: ../src/daemon/abrt-action-save-container-data.c:265 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 -@@ -290,15 +298,15 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - msgid "Problem directory" - msgstr "問題目錄" - --#: ../src/daemon/abrt-action-save-package-data.c:407 -+#: ../src/daemon/abrt-action-save-package-data.c:454 - msgid "Configuration file" - msgstr "組態檔" - --#: ../src/daemon/abrt-action-save-package-data.c:408 -+#: ../src/daemon/abrt-action-save-package-data.c:455 - msgid "Use this directory as RPM root" - msgstr "使用此目錄作為 RPM 根基" - --#: ../src/daemon/abrt-action-save-container-data.c:199 -+#: ../src/daemon/abrt-action-save-container-data.c:254 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" -@@ -306,29 +314,29 @@ msgstr "& [-v] -d DIR\n" - "\n" - "儲存容器中介資料" - --#: ../src/daemon/abrt-action-save-container-data.c:211 -+#: ../src/daemon/abrt-action-save-container-data.c:266 - msgid "Root directory for running container commands" - msgstr "執行容器指令的根基目錄" - --#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/daemon/abrt-server.c:847 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [選項]" - --#: ../src/daemon/abrt-server.c:807 -+#: ../src/daemon/abrt-server.c:858 - msgid "Use NUM as client uid" - msgstr "使用 NUM 作為客戶端 UID" - --#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:859 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-core.c:497 - #: ../src/plugins/abrt-dump-journal-oops.c:219 - #: ../src/plugins/abrt-dump-journal-xorg.c:188 - #: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "紀錄至 syslog" - --#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:860 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "加入程式名稱至紀錄檔" - -@@ -354,7 +362,7 @@ msgstr "未授權" - - #: ../src/dbus/abrt-dbus.c:285 - msgid "Can't open the problem" --msgstr "" -+msgstr "無法開啟問題" - - #: ../src/dbus/abrt-dbus.c:317 - #, c-format -@@ -845,11 +853,11 @@ msgstr "內核記錄指出有偵測到硬體錯誤。\n" - - #: ../src/plugins/abrt-action-find-bodhi-update:88 - msgid "cannot open problem directory '{0}'" --msgstr "" -+msgstr "無法打開問題目錄" - - #: ../src/plugins/abrt-action-find-bodhi-update:102 - msgid "Problem directory error: {0}" --msgstr "" -+msgstr "問題目錄錯誤" - - #: ../src/plugins/abrt-action-find-bodhi-update:117 - msgid "Using product '{0}' from /etc/os-release." -@@ -857,11 +865,11 @@ msgstr "" - - #: ../src/plugins/abrt-action-find-bodhi-update:119 - msgid "Using product {0}." --msgstr "" -+msgstr "使用的產品" - - #: ../src/plugins/abrt-action-find-bodhi-update:121 - msgid "Using product version {0}." --msgstr "" -+msgstr "使用的產品版本" - - #: ../src/plugins/abrt-action-find-bodhi-update:133 - msgid "Duplicate bugzilla bug '#{0}' was found" -@@ -927,12 +935,12 @@ msgstr "錯誤:GDB 未傳回任何資料" - msgid "Error: %s" - msgstr "錯誤:%s" - --#: ../src/plugins/abrt-action-install-debuginfo.in:51 -+#: ../src/plugins/abrt-action-install-debuginfo.in:52 - msgid "Exiting on user command" - msgstr "正在離開使用者指令" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 --#, fuzzy, c-format -+#, c-format - msgid "" - "Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" - " [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -@@ -950,62 +958,43 @@ msgid "" - " --ids Default: build_ids\n" - " --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" -+" --cache Colon separated list of directories. The first one is used " -+"for\n" -+" saving installed debuginfos.\n" -+" Default: /var/cache/abrt-dir\n" - " --size_mb Default: 4096\n" - " --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " --"[--size_mb=SIZE]\n" --" [-e, --exact=PATH[:PATH]...]\n" --"\n" --"為所有列在 BUILD_IDS_FILE 中的 build-ids 安裝 debuginfos\n" --"到 CACHEDIR 中,使用 TMPDIR 作為暫時臺前區域。\n" --"Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" --"\n" --"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" --"\n" --" -v Be verbose\n" --" -y Noninteractive, assume 'Yes' to all questions\n" --" --ids Default: build_ids\n" --" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" --"RANDOM_SUFFIX\n" --" --cache Default: /var/cache/abrt-di\n" --" --size_mb Default: 4096\n" --" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" --" -e,--exact Download only specified files\n" --" --repo Pattern to use when searching for repos.\n" --" Default: *debug*\n" - --#: ../src/plugins/abrt-action-install-debuginfo.in:175 -+#: ../src/plugins/abrt-action-install-debuginfo.in:176 - msgid "Can't open {0}: {1}" - msgstr "無法開啟 {0}:{1}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#: ../src/plugins/abrt-action-install-debuginfo.in:213 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "核心傾印參照 {0} 份 debuginfo 檔,其中的 {1} 份尚未安裝" - --#: ../src/plugins/abrt-action-install-debuginfo.in:215 -+#: ../src/plugins/abrt-action-install-debuginfo.in:216 - msgid "{0} of debuginfo files are not installed" - msgstr "尚未安裝 {0} 個 debuginfo 檔案" - --#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#: ../src/plugins/abrt-action-install-debuginfo.in:235 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "CCpp 附加元件的組態無效、不支援的軟體包管理員:「%s」" - --#: ../src/plugins/abrt-action-install-debuginfo.in:249 -+#: ../src/plugins/abrt-action-install-debuginfo.in:253 - msgid "Missing requested file: {0}" - msgstr "遺失的請求檔案:{0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:254 -+#: ../src/plugins/abrt-action-install-debuginfo.in:258 - msgid "Missing debuginfo file: {0}" - msgstr "遺失 debuginfo 檔:{0}" - --#: ../src/plugins/abrt-action-install-debuginfo.in:257 -+#: ../src/plugins/abrt-action-install-debuginfo.in:261 - msgid "All debuginfo files are available" - msgstr "所有的 debuginfo 檔案皆可用" - -@@ -1028,7 +1017,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 - msgid "Download only specified files" --msgstr "" -+msgstr "只有下載特別的檔案" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 - msgid "Pattern to use when searching for repos, default: *debug*" -@@ -1036,7 +1025,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 - msgid "Ignored option" --msgstr "" -+msgstr "忽略選項" - - #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" -@@ -1273,7 +1262,7 @@ msgid "Create new problem directory in DIR for every oops found" - msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" - - #: ../src/plugins/abrt-dump-oops.c:103 --#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-core.c:499 - #: ../src/plugins/abrt-dump-journal-oops.c:225 - #: ../src/plugins/abrt-dump-journal-xorg.c:191 - #: ../src/plugins/abrt-dump-xorg.c:55 -@@ -1309,34 +1298,34 @@ msgstr "無法編譯 regex" - - #: ../src/plugins/abrt-dump-oops.c:177 - msgid "Can't update the problem: no oops found" --msgstr "" -+msgstr "不能更新這個程式:找不到oops訊息" - - #: ../src/plugins/abrt-dump-oops.c:183 - msgid "More oopses found: process only the first one" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:341 --#: ../src/plugins/abrt-dump-journal-core.c:377 -+#: ../src/plugins/abrt-dump-journal-core.c:361 -+#: ../src/plugins/abrt-dump-journal-core.c:397 - msgid "Failed to obtain all required information from journald" - msgstr "無法從 journald 取得所有需要的資訊" - - #. We don't want to update the counter here. --#: ../src/plugins/abrt-dump-journal-core.c:401 -+#: ../src/plugins/abrt-dump-journal-core.c:421 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "在 %d 秒內不再儲存重複崩潰 (限制為 %d 秒)" - --#: ../src/plugins/abrt-dump-journal-core.c:407 -+#: ../src/plugins/abrt-dump-journal-core.c:427 - msgid "Failed to save detect problem data in abrt database" - msgstr "無法在 abrt 資料庫中儲存偵測問題資料" - --#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-core.c:447 - #: ../src/plugins/abrt-dump-journal-oops.c:165 - #: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "無法初始化 systemd-journal watch" - --#: ../src/plugins/abrt-dump-journal-core.c:447 -+#: ../src/plugins/abrt-dump-journal-core.c:467 - msgid "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" -@@ -1350,59 +1339,59 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:478 -+#: ../src/plugins/abrt-dump-journal-core.c:498 - msgid "Create new problem directory in DIR for every coredump" - msgstr "在 DIR 目錄中為每個核心傾印建立新的問題目錄" - --#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-core.c:500 - #: ../src/plugins/abrt-dump-journal-oops.c:228 - #: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "開始從 CURSOR 位置讀取 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-core.c:501 - #: ../src/plugins/abrt-dump-journal-oops.c:229 - #: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "開始從尾端讀取 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:482 -+#: ../src/plugins/abrt-dump-journal-core.c:502 - msgid "Throttle problem directory creation to 1 per INT second" - msgstr "將問題目錄建立壓制到每 INT 秒 1 個" - --#: ../src/plugins/abrt-dump-journal-core.c:483 -+#: ../src/plugins/abrt-dump-journal-core.c:503 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" - msgstr "與 -t INT 相同,INT 則在 plugins/CCpp.conf 中指定" - --#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-core.c:504 - #: ../src/plugins/abrt-dump-journal-oops.c:230 - #: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "從上次查看的位置開始跟隨 systemd-journal (如果有的話)" - --#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-core.c:515 - #: ../src/plugins/abrt-dump-journal-oops.c:246 - #: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "您需要指定 -c CURSOR 或 -e" - --#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-core.c:561 - #: ../src/plugins/abrt-dump-journal-oops.c:284 - #: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "無法開啟 systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:544 -+#: ../src/plugins/abrt-dump-journal-core.c:564 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "無法過濾 systemd-journal 僅取用 systemd-coredump 資料" - --#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-core.c:569 - #: ../src/plugins/abrt-dump-journal-oops.c:293 - #: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "無法查找到日誌尾端" - --#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-core.c:572 - #: ../src/plugins/abrt-dump-journal-oops.c:309 - #: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format -@@ -1468,7 +1457,7 @@ msgid "" - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" --"the entire journal if the last seen possition is not available.\n" -+"the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" --- -2.7.4 - diff --git a/abrt.spec b/abrt.spec index b23fdf4..3bdd3fe 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1,39 +1,46 @@ -%{!?python_site: %global python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} -# platform-dependent -%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} - # http://fedoraproject.org/wiki/Packaging:Guidelines#PIE # http://fedoraproject.org/wiki/Hardened_Packages %global _hardened_build 1 -%if 0%{?fedora} >= 14 - %bcond_without systemd +%if 0%{?fedora} || 0%{?rhel} > 7 +# Enable python3 build by default +%bcond_without python3 %else - %bcond_with systemd +%bcond_with python3 %endif -# systemd wasn't set by the code above - so we're on old Fedora or we're not on Fedora at all -%if %{without systemd} - %if 0%{?rhel} >= 7 - %bcond_without systemd - %else - %bcond_with systemd - %endif +%if 0%{?fedora} >= 41 || 0%{?rhel} >= 10 +%bcond_with container_handler +%else +%bcond_without container_handler +%endif + + +%if 0%{?rhel}%{?suse_version} + %bcond_with bodhi +%else + %bcond_without bodhi %endif # build abrt-atomic subpackage %bcond_without atomic -%ifarch aarch64 -%define have_kexec_tools 0 -%else -%define have_kexec_tools 1 +# build abrt-retrace-client by default +%bcond_without retrace + +# rpmbuild --define 'desktopvendor mystring' +%if "x%{?desktopvendor}" == "x" + %define desktopvendor %(source /etc/os-release; echo ${ID}) %endif -%if 0%{?rhel} >= 6 -%define desktopvendor redhat +%if 0%{?suse_version} +%define dbus_devel dbus-1-devel +%define libjson_devel libjson-devel +%define shadow_utils pwdutils %else -%define desktopvendor fedora +%define dbus_devel dbus-devel +%define libjson_devel json-c-devel +%define shadow_utils shadow-utils %endif # do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 @@ -43,104 +50,105 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.4-2 -%define satyr_ver 0.19 +%define glib_ver 2.73.3 +%define libreport_ver 2.17.13 +%define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.8.0 -Release: 6%{?dist} -License: GPLv2+ -Group: Applications/System +Version: 2.17.8 +Release: 2%{?dist} +License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ -Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz - -# git format-patch %%{Version} --topo-order -N -M; -# i=1; for p in `ls 0*.patch`; do printf "Patch%04d: %s\n" $i $p; ((i++)); done -Patch0001: 0001-ccpp-drop-e-from-the-core_pattern.patch -#Patch0002: 0002-translations-update-zanata-configuration.patch -Patch0003: 0003-Translation-updates.patch -Patch0004: 0004-translations-add-missing-new-line.patch -Patch0005: 0005-Fix-minor-typo-possition-position.patch -Patch0006: 0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch -#Patch0007: 0007-testsuite-add-concurrent-processing-test-for-abrtd.patch -#Patch0008: 0008-CCpp-turn-off-compat-cores.patch - revert -Patch0009: 0009-a-a-install-debuginfo-make-tmpdir-variable-global.patch -Patch0010: 0010-a-a-install-debuginfo-fix-BrokenPipe-error.patch -Patch0011: 0011-Add-basic-documentation.patch -#Patch0012: 0012-spec-README-README.md.patch -#Patch0013: 0013-testsuite-fix-ccpp-plugin-debug-test.patch -#Patch0014: 0014-testsuite-rlAssertRpm-doesn-t-work-with-abrt-addon.patch -#Patch0015: 0015-testsuite-compat-cores-add-include-to-the-loop.c-fil.patch -#Patch0016: 0016-testsuite-changes-due-to-turn-off-compat-cores.patch -#Patch0017: 0017-testsuite-yum-to-dnf.patch -#Patch0018: 0018-testsuite-avoid-unintentional-removal-of-package-man.patch -#Patch0019: 0019-testsuite-tell-the-runner-about-problem-sub-director.patch -#Patch0020: 0020-testsuite-add-a-per-test-timeout-for-15m.patch -Patch0021: 0021-Merge-a-a-save-kernel-data-with-a-a-save-package-dat.patch -#Patch0022: 0022-spec-drop-abrt-action-save-kernel-data-bits.patch -Patch0023: 0023-a-retrace-client-format-security.patch -Patch0024: 0024-a-console-notification-do-not-leak-variables.patch -Patch0025: 0025-a-a-install-debuginfo-correct-handling-of-DebuginfoL.patch -Patch0026: 0026-doc-improve-documentation-of-AllowedGroups-AllowedUs.patch -Patch0027: 0027-a-a-install-debuginfo-do-not-try-to-split-None.patch -Patch0028: 0028-a-dump-journal-xorg-add-_COMM-gnome-shell-to-journal.patch -Patch0029: 0029-a-dump-journal-xorg-allow-libexec-X-to-be-executable.patch -Patch0030: 0030-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch -Patch0031: 0031-koops-do-not-assume-version-has-3-levels.patch -Patch0032: 0032-a-a-install-debuginfo-Exception-may-not-have-an-argu.patch -Patch0033: 0033-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch -#Patch0034: 0034-spec-add-utils-linux-to-vmcore-s-Require.patch -Patch0035: 0035-vmcore-use-findmnt-to-get-mountpoint.patch -Patch0036: 0036-abrt-hook-ccpp-Fix-mismatching-argument.patch -Patch0037: 0037-Translation-updates.patch - -# '%%autosetup -S git' -> git -BuildRequires: git - -BuildRequires: dbus-devel +Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +BuildRequires: git-core +BuildRequires: %{dbus_devel} +BuildRequires: hostname BuildRequires: gtk3-devel -BuildRequires: glib2-devel >= 2.43 -BuildRequires: rpm-devel >= 4.6 +BuildRequires: glib2-devel >= %{glib_ver} +BuildRequires: rpm-devel >= 6.0.0 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel -BuildRequires: python-devel -BuildRequires: python3-devel +BuildRequires: make BuildRequires: gettext BuildRequires: libxml2-devel BuildRequires: intltool BuildRequires: libtool -BuildRequires: nss-devel +BuildRequires: libsoup3-devel BuildRequires: asciidoc BuildRequires: doxygen BuildRequires: xmlto BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} -BuildRequires: systemd-python -BuildRequires: python3-systemd BuildRequires: augeas BuildRequires: libselinux-devel -BuildRequires: python-argcomplete +# Required for the %%{_unitdir} and %%{_tmpfilesdir} macros. +BuildRequires: systemd-rpm-macros +%if %{with python3} +BuildRequires: python3-devel +BuildRequires: python3-systemd BuildRequires: python3-argcomplete -BuildRequires: python-argh -BuildRequires: python3-argh -BuildRequires: python-humanize -BuildRequires: python3-humanize +BuildRequires: python3-dbus +%endif Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} - -%if %{with systemd} -Requires: systemd-units +# these only exist on suse +%if 0%{?suse_version} +BuildRequires: dbus-1-glib-devel +Requires: dbus-1-glib %endif -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%{?systemd_requires} +Requires: systemd Requires: %{name}-libs = %{version}-%{release} -Requires: %{name}-python3 = %{version}-%{release} -Requires(pre): shadow-utils +Requires: python3-%{name} = %{version}-%{release} +Requires(pre): %{shadow_utils} +%if %{with python3} +Requires: python3-augeas Requires: python3-dbus -Requires: python3-dmidecode -Requires: libreport-plugin-ureport >= %{libreport_ver} +%endif +%ifarch aarch64 i686 x86_64 +Requires: dmidecode +%endif +Requires: libreport-plugin-ureport +%if 0%{?fedora} +Requires: libreport-plugin-systemd-journal +%endif +# to fix upgrade path abrt-plugin-sosreport was removed in 2.14.5 version. +Obsoletes: abrt-plugin-sosreport < 2.14.5 +# fros was retired 2025-07, and was initially added to comps to support +# abrt-desktop, so let's obsolete it here +Obsoletes: fros < 1.1-42 +Obsoletes: fros-gnome < 1.1-42 +Obsoletes: fros-recordmydesktop < 1.1-42 + +#gui +BuildRequires: libreport-gtk-devel >= %{libreport_ver} +BuildRequires: gsettings-desktop-schemas-devel >= 3.15 +#addon-ccpp +BuildRequires: gdb-headless +#addon-kerneloops +BuildRequires: systemd-devel +BuildRequires: %{libjson_devel} +%if %{with bodhi} +# plugin-bodhi +BuildRequires: libreport-web-devel >= %{libreport_ver} +%endif +#desktop +#Default config of addon-ccpp requires gdb +BuildRequires: gdb-headless +#dbus +BuildRequires: polkit-devel +%if %{with python3} +#python3-abrt +BuildRequires: python3-pytest +BuildRequires: python3-sphinx +BuildRequires: python3-libreport +#python3-abrt-doc +BuildRequires: python3-devel +%endif %description %{name} is a tool to help users to detect defects in applications and @@ -149,14 +157,12 @@ It uses plugin system to extend its functionality. %package libs Summary: Libraries for %{name} -Group: System Environment/Libraries %description libs Libraries for %{name}. %package devel Summary: Development libraries for %{name} -Group: Development/Libraries Requires: abrt-libs = %{version}-%{release} %description devel @@ -164,14 +170,13 @@ Development libraries and headers for %{name}. %package gui-libs Summary: Libraries for %{name}-gui -Group: System Environment/Libraries +Requires: %{name}-libs = %{version}-%{release} %description gui-libs Libraries for %{name}-gui. %package gui-devel Summary: Development libraries for %{name}-gui -Group: Development/Libraries Requires: abrt-gui-libs = %{version}-%{release} %description gui-devel @@ -179,13 +184,10 @@ Development libraries and headers for %{name}-gui. %package gui Summary: %{name}'s gui -Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: gnome-abrt Requires: gsettings-desktop-schemas >= 3.15 -BuildRequires: libreport-gtk-devel >= %{libreport_ver} -BuildRequires: gsettings-desktop-schemas-devel >= 3.15 # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 @@ -196,60 +198,37 @@ Requires: abrt-gui-libs = %{version}-%{release} %description gui GTK+ wizard for convenient bug reporting. -%package addon-coredump-helper -Summary: %{name}'s /proc/sys/kernel/core_pattern helper -Group: System Environment/Libraries -Requires: abrt-libs = %{version}-%{release} - -%description addon-coredump-helper -This package contains hook for C/C++ crashed programs. - %package addon-ccpp Summary: %{name}'s C/C++ addon -Group: System Environment/Libraries Requires: cpio -%if 0%{?fedora:%{fedora} > 22} -Requires: gdb >= gdb-7.9.50.20150531 -%else -Requires: gdb >= 7.9.1-16 -%endif +Requires: gdb-headless Requires: elfutils +# Required for local retracing with GDB. +Requires: elfutils-debuginfod-client %if 0%{!?rhel:1} -# abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: -Requires: %{name}-retrace-client %endif Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} -Requires: %{name}-addon-coredump-helper = %{version}-%{release} -Requires: libreport-python3 +%if %{with python3} +Requires: python3-libreport +%endif +Obsoletes: abrt-addon-coredump-helper <= 2.12.2 +Obsoletes: abrt-retrace-client <= 2.15.1 + %description addon-ccpp This package contains %{name}'s C/C++ analyzer plugin. %package addon-upload-watch Summary: %{name}'s upload addon -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} %description addon-upload-watch This package contains hook for uploaded problems. -%package retrace-client -Summary: %{name}'s retrace client -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} -Requires: xz -Requires: tar - -%description retrace-client -This package contains the client application for Retrace server -which is able to analyze C/C++ crashes remotely. - %package addon-kerneloops Summary: %{name}'s kerneloops addon -Group: System Environment/Libraries -BuildRequires: systemd-devel Requires: curl Requires: %{name} = %{version}-%{release} %if 0%{!?rhel:1} @@ -263,7 +242,6 @@ system log. %package addon-xorg Summary: %{name}'s Xorg addon -Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} @@ -272,123 +250,128 @@ Requires: abrt-libs = %{version}-%{release} This package contains plugin for collecting Xorg crash information from Xorg log. -%if %{?have_kexec_tools} == 1 %package addon-vmcore Summary: %{name}'s vmcore addon -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops +# On riscv64, kexec-tools does not compile: +# "configure: error: unsupported architecture riscv64" +%ifnarch riscv64 Requires: kexec-tools -Requires: abrt-python3 +%endif +%if %{with python3} +Requires: python3-abrt Requires: python3-augeas +Requires: python3-systemd +%endif Requires: util-linux %description addon-vmcore This package contains plugin for collecting kernel crash information from vmcore files. -%endif %package addon-pstoreoops Summary: %{name}'s pstore oops addon -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: abrt-addon-kerneloops -Obsoletes: abrt-addon-uefioops < 2.1.7 +Obsoletes: abrt-addon-uefioops <= 2.1.6 +Provides: abrt-addon-uefioops = %{version}-%{release} %description addon-pstoreoops This package contains plugin for collecting kernel oopses from pstore storage. +%if %{with bodhi} %package plugin-bodhi Summary: %{name}'s bodhi plugin -BuildRequires: json-c-devel -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -BuildRequires: libreport-web-devel >= %{libreport_ver} -BuildRequires: hawkey-devel -Obsoletes: libreport-plugin-bodhi > 0.0.1 -Provides: libreport-plugin-bodhi +Requires: abrt-libs = %{version}-%{release} +Obsoletes: libreport-plugin-bodhi <= 2.0.10 +Provides: libreport-plugin-bodhi = %{version}-%{release} %description plugin-bodhi Search for a new updates in bodhi server. +%endif -%package addon-python -Summary: %{name}'s addon for catching and analyzing Python exceptions -Group: System Environment/Libraries -Requires: python -Requires: %{name} = %{version}-%{release} -Requires: systemd-python -Requires: abrt-python - -%description addon-python -This package contains python hook and python analyzer plugin for handling -uncaught exception in python programs. - -%package addon-python3 +%if %{with python3} +%package -n python3-abrt-addon Summary: %{name}'s addon for catching and analyzing Python 3 exceptions -Group: System Environment/Libraries -Requires: python3 +BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: python3-systemd -Requires: abrt-python3 +Requires: python3-abrt -%description addon-python3 +%description -n python3-abrt-addon This package contains python 3 hook and python analyzer plugin for handling uncaught exception in python 3 programs. +%if %{with container_handler} +%package -n python3-abrt-container-addon +Summary: %{name}'s container addon for catching Python 3 exceptions +BuildArch: noarch +Conflicts: python3-abrt-addon +Requires: container-exception-logger + +%description -n python3-abrt-container-addon +This package contains python 3 hook and handling uncaught exception in python 3 +programs in container. +%endif + +%endif + +%package plugin-machine-id +Summary: %{name}'s plugin to generate machine_id based off dmidecode +Requires: %{name} = %{version}-%{release} + +%description plugin-machine-id +This package contains a configuration snippet to enable automatic generation +of machine_id for abrt events. + %package tui Summary: %{name}'s command line interface -Group: User Interface/Desktops +BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} Requires: abrt-dbus +%if %{with python3} +Requires: python3-abrt +Requires: abrt-addon-ccpp +Requires: python3-argcomplete + +Provides: %{name}-cli-ng = %{version}-%{release} +Obsoletes: %{name}-cli-ng < 2.12.2 +%endif %description tui This package contains a simple command line client for processing abrt reports in command line environment. -%package cli-ng -Summary: %{name}'s improved command line interface -Group: User Interface/Desktops -Requires: %{name} = %{version}-%{release} -Requires: libreport-cli >= %{libreport_ver} -Requires: abrt-libs = %{version}-%{release} -Requires: abrt-dbus -Requires: abrt-python -Requires: abrt-addon-ccpp -Requires: python-argh -Requires: python-argcomplete -Requires: python-humanize - -%description cli-ng -New generation command line interface for ABRT - %package cli Summary: Virtual package to make easy default installation on non-graphical environments -Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: abrt-tui Requires: abrt-addon-kerneloops Requires: abrt-addon-pstoreoops -%if %{?have_kexec_tools} == 1 Requires: abrt-addon-vmcore -%endif Requires: abrt-addon-ccpp -Requires: abrt-addon-python3 +%if %{with python3} +Requires: python3-abrt-addon +%endif Requires: abrt-addon-xorg -%if 0%{?rhel} -Requires: libreport-rhel >= %{libreport_ver} -Requires: libreport-plugin-rhtsupport >= %{libreport_ver} -%else -Requires: abrt-retrace-client +%if ! 0%{?rhel} +%if %{with bodhi} Requires: abrt-plugin-bodhi +%endif +%if 0%{!?suse_version:1} Requires: libreport-plugin-bugzilla >= %{libreport_ver} +%endif Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} - +%if 0%{?fedora} Requires: libreport-fedora >= %{libreport_ver} %endif +%endif %description cli Virtual package to install all necessary packages for usage from command line @@ -396,7 +379,6 @@ environment. %package desktop Summary: Virtual package to make easy default installation on desktop environments -Group: User Interface/Desktops # This package gets installed when anything requests bug-buddy - # happens when users upgrade Fn to Fn+1; # or if user just wants "typical desktop installation". @@ -405,30 +387,30 @@ Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: abrt-addon-pstoreoops -%if %{?have_kexec_tools} == 1 Requires: abrt-addon-vmcore -%endif Requires: abrt-addon-ccpp -Requires: abrt-addon-python3 +%if %{with python3} +Requires: python3-abrt-addon +%endif Requires: abrt-addon-xorg -# Default config of addon-ccpp requires gdb -Requires: gdb >= 7.8.1-31 -Requires: elfutils +Requires: gdb-headless Requires: abrt-gui Requires: gnome-abrt -%if 0%{?rhel} -Requires: libreport-rhel >= %{libreport_ver} -Requires: libreport-plugin-rhtsupport >= %{libreport_ver} -%else -Requires: abrt-retrace-client +%if ! 0%{?rhel} +%if %{with bodhi} Requires: abrt-plugin-bodhi +%endif +%if 0%{!?suse_version:1} Requires: libreport-plugin-bugzilla >= %{libreport_ver} +%endif Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} +%if 0%{?fedora} Requires: libreport-fedora >= %{libreport_ver} %endif +%endif #Requires: abrt-plugin-firefox -Provides: bug-buddy = 2.28.0 +Provides: bug-buddy = %{version}-%{release} %description desktop Virtual package to install all necessary packages for usage from desktop @@ -436,85 +418,51 @@ environment. %if %{with atomic} %package atomic -Summary: Package to make easy default installation on Atomic hosts -Group: Applications/System -Requires: %{name}-addon-coredump-helper = %{version}-%{release} +Summary: Package to make easy default installation on Atomic hosts. +Requires: %{name}-libs = %{version}-%{release} Conflicts: %{name}-addon-ccpp -%endif %description atomic Package to install all necessary packages for usage from Atomic hosts. +%endif %package dbus Summary: ABRT DBus service -Group: Applications/System Requires: %{name} = %{version}-%{release} -BuildRequires: polkit-devel Requires: abrt-libs = %{version}-%{release} +Requires: dbus-tools %description dbus ABRT DBus service which provides org.freedesktop.problems API on dbus and uses PolicyKit to authorize to access the problem data. - -%package python -Summary: ABRT Python API -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-libs = %{version}-%{release} -Requires: %{name}-dbus = %{version}-%{release} -Requires: dbus-python -Requires: libreport-python -BuildRequires: python-nose -BuildRequires: python-sphinx -BuildRequires: libreport-python - -%description python -High-level API for querying, creating and manipulating -problems handled by ABRT in Python. - -%package python-doc -Summary: ABRT Python API Documentation -Group: Documentation -BuildArch: noarch -BuildRequires: python2-devel -Requires: %{name} = %{version}-%{release} -Requires: %{name}-python = %{version}-%{release} - -%description python-doc -Examples and documentation for ABRT Python API. - -%package python3 +%if %{with python3} +%package -n python3-abrt Summary: ABRT Python 3 API -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus -Requires: libreport-python3 -BuildRequires: python3-nose -BuildRequires: python3-sphinx -BuildRequires: libreport-python3 +Requires: python3-libreport +Requires: python3-gobject-base -%description python3 +%description -n python3-abrt High-level API for querying, creating and manipulating problems handled by ABRT in Python 3. -%package python3-doc +%package -n python3-abrt-doc Summary: ABRT Python API Documentation -Group: Documentation BuildArch: noarch -BuildRequires: python3-devel Requires: %{name} = %{version}-%{release} -Requires: %{name}-python3 = %{version}-%{release} +Requires: python3-%{name} = %{version}-%{release} -%description python3-doc +%description -n python3-abrt-doc Examples and documentation for ABRT Python 3 API. +%endif %package console-notification Summary: ABRT console notification script -Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: %{name}-cli = %{version}-%{release} @@ -523,36 +471,46 @@ A small script which prints a count of detected problems when someone logs in to the shell %prep -# http://www.rpm.org/wiki/PackagerDocs/Autosetup -# Default '__scm_apply_git' is 'git apply && git commit' but this workflow -# doesn't allow us to create a new file within a patch, so we have to use -# 'git am' (see /usr/lib/rpm/macros for more details) -#%%define __scm_apply_git(qp:m:) %%{__git} am -%define __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex -%autosetup -S git +%global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex +%autosetup -S git -p 0 + +# Create a sysusers.d config file +#uidgid pair 173:173 reserved in setup rhbz#670231 +%global abrt_gid_uid 173 +cat >abrt.sysusers.conf </dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt -getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt -exit 0 +make check|| { + # find and print the logs of failed test + # do not cat tests/testsuite.log because it contains a lot of bloat + find src -name "test-suite.log" -print -exec cat '{}' \; + find tests/testsuite.dir -name "testsuite.log" -print -exec cat '{}' \; + exit 1 +} %post # $1 == 1 if install; 2 if upgrade %systemd_post abrtd.service %post addon-ccpp -# this is required for transition from 1.1.x to 2.x -# because /cache/abrt-di/* was created under root with root:root -# so 2.x fails when it tries to extract debuginfo there.. -chown -R abrt:abrt %{_localstatedir}/cache/abrt-di -%systemd_post abrt-ccpp.service +# migration from 2.14.1.18 +if [ ! -e "%{_localstatedir}/cache/abrt-di/.migration-group-add" ]; then + chmod -R g+w %{_localstatedir}/cache/abrt-di + touch "%{_localstatedir}/cache/abrt-di/.migration-group-add" +fi + %systemd_post abrt-journal-core.service +%journal_catalog_update %post addon-kerneloops %systemd_post abrt-oops.service +%journal_catalog_update %post addon-xorg %systemd_post abrt-xorg.service +%journal_catalog_update + +%if %{with python3} +%post -n python3-abrt-addon +%journal_catalog_update +%endif -%if %{?have_kexec_tools} == 1 %post addon-vmcore %systemd_post abrt-vmcore.service -%endif +%journal_catalog_update %post addon-pstoreoops %systemd_post abrt-pstoreoops.service @@ -628,7 +602,6 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_preun abrtd.service %preun addon-ccpp -%systemd_preun abrt-ccpp.service %systemd_preun abrt-journal-core.service %preun addon-kerneloops @@ -637,10 +610,8 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %preun addon-xorg %systemd_preun abrt-xorg.service -%if %{?have_kexec_tools} == 1 %preun addon-vmcore %systemd_preun abrt-vmcore.service -%endif %preun addon-pstoreoops %systemd_preun abrt-pstoreoops.service @@ -652,7 +623,6 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_postun_with_restart abrtd.service %postun addon-ccpp -%systemd_postun_with_restart abrt-ccpp.service %systemd_postun_with_restart abrt-journal-core.service %postun addon-kerneloops @@ -661,10 +631,8 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %postun addon-xorg %systemd_postun_with_restart abrt-xorg.service -%if %{?have_kexec_tools} == 1 %postun addon-vmcore %systemd_postun_with_restart abrt-vmcore.service -%endif %postun addon-pstoreoops %systemd_postun_with_restart abrt-pstoreoops.service @@ -681,31 +649,17 @@ touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : if [ -f /etc/abrt/plugins/CCpp.conf ]; then mv /etc/abrt/plugins/CCpp.conf /etc/abrt/plugins/CCpp.conf.rpmsave.atomic || exit 1; fi -ln -sf /etc/abrt/plugins/CCpp_Atomic.conf /etc/abrt/plugins/CCpp.conf -if [ -f /usr/share/abrt/conf.d/plugins/CCpp.conf ]; then - mv /usr/share/abrt/conf.d/plugins/CCpp.conf /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic || exit 1; -fi -ln -sf /usr/share/abrt/conf.d/plugins/CCpp_Atomic.conf /usr/share/abrt/conf.d/plugins/CCpp.conf -%systemd_post abrt-coredump-helper.service %preun atomic if [ -L /etc/abrt/plugins/CCpp.conf ]; then rm /etc/abrt/plugins/CCpp.conf fi -if [ -L /usr/share/abrt/conf.d/plugins/CCpp.conf ]; then - rm /usr/share/abrt/conf.d/plugins/CCpp.conf -fi if [ -f /etc/abrt/plugins/CCpp.conf.rpmsave.atomic ]; then mv /etc/abrt/plugins/CCpp.conf.rpmsave.atomic /etc/abrt/plugins/CCpp.conf || exit 1 fi -if [ -f /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic ]; then - mv /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic /usr/share/abrt/conf.d/plugins/CCpp.conf || exit 1 -fi - -%postun atomic -%systemd_postun_with_restart abrt-coredump-helper.service %endif +%if 0%{?rhel} && 0%{?rhel} <= 7 %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -719,12 +673,27 @@ if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +%endif %posttrans +# update the old problem dirs to contain "type" element service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp -service abrt-ccpp condrestart >/dev/null 2>&1 || : +# Regenerate core_backtraces because of missing crash threads +abrtdir=$(grep "^\s*DumpLocation\b" /etc/abrt/abrt.conf | tail -1 | cut -d'=' -f2 | tr -d ' ') +if test -z "$abrtdir"; then + abrtdir=%{default_dump_dir} +fi +if test -d "$abrtdir"; then + for DD in `find "$abrtdir" -mindepth 1 -maxdepth 1 -type d` + do + if test -f "$DD/analyzer" && grep -q "^CCpp$" "$DD/analyzer"; then + /usr/bin/abrt-action-generate-core-backtrace -d "$DD" -- >/dev/null 2>&1 || : + test -f "$DD/core_backtrace" && chown `stat --format=%U:abrt $DD` "$DD/core_backtrace" || : + fi + done +fi %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : @@ -732,101 +701,77 @@ service abrt-oops condrestart >/dev/null 2>&1 || : %posttrans addon-xorg service abrt-xorg condrestart >/dev/null 2>&1 || : -%if %{?have_kexec_tools} == 1 %posttrans addon-vmcore service abrt-vmcore condrestart >/dev/null 2>&1 || : # Copy the configuration file to plugin's directory test -f /etc/abrt/abrt-harvest-vmcore.conf && { + echo "Moving /etc/abrt/abrt-harvest-vmcore.conf to /etc/abrt/plugins/vmcore.conf" mv -b /etc/abrt/abrt-harvest-vmcore.conf /etc/abrt/plugins/vmcore.conf } exit 0 -%endif %posttrans addon-pstoreoops service abrt-pstoreoops condrestart >/dev/null 2>&1 || : -%posttrans addon-upload-watch -service abrt-upload-watch condrestart >/dev/null 2>&1 || : - -%posttrans gui -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - %posttrans dbus # Force abrt-dbus to restart like we do with the other services killall abrt-dbus >/dev/null 2>&1 || : - %files -f %{name}.lang -%defattr(-,root,root,-) %doc README.md COPYING -%if %{with systemd} %{_unitdir}/abrtd.service %{_tmpfilesdir}/abrt.conf -%else -%{_initrddir}/abrtd -%endif %{_sbindir}/abrtd %{_sbindir}/abrt-server %{_sbindir}/abrt-auto-reporting %{_libexecdir}/abrt-handle-event %{_libexecdir}/abrt-action-ureport -%{_libexecdir}/abrt-action-generate-machine-id +%{_libexecdir}/abrt-action-save-container-data %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-notify -%{_mandir}/man1/abrt-action-notify.1.gz +%{_mandir}/man1/abrt-action-notify.1* %{_bindir}/abrt-action-save-package-data -%{_bindir}/abrt-action-save-container-data %{_bindir}/abrt-watch-log %{_bindir}/abrt-action-analyze-python %{_bindir}/abrt-action-analyze-xorg %config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.freedesktop.problems.daemon.conf +%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf -%{_datadir}/%{name}/conf.d/abrt-action-save-package-data.conf -%config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf -%{_datadir}/%{name}/conf.d/plugins/xorg.conf -%{_mandir}/man5/abrt-xorg.conf.5.gz %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys.conf -%{_datadir}/%{name}/conf.d/gpg_keys.conf -%{_mandir}/man5/gpg_keys.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf -%{_mandir}/man5/abrt_event.conf.5.gz +%{_mandir}/man5/abrt_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf -%{_mandir}/man5/smart_event.conf.5.gz -%dir %attr(0751, root, abrt) %{_localstatedir}/spool/%{name} +%{_mandir}/man5/smart_event.conf.5* +%dir %attr(0751, root, abrt) %{default_dump_dir} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root -%dir %attr(0755, root, root) %{_localstatedir}/run/%{name} +%ghost %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/%{name}/abrtd.pid -%{_mandir}/man1/abrt-handle-upload.1.gz -%{_mandir}/man1/abrt-server.1.gz -%{_mandir}/man1/abrt-action-save-package-data.1.gz -%{_mandir}/man1/abrt-watch-log.1.gz +%{_mandir}/man1/abrt-handle-upload.1* +%{_mandir}/man1/abrt-server.1* +%{_mandir}/man1/abrt-action-save-package-data.1* +%{_mandir}/man1/abrt-watch-log.1* %{_mandir}/man1/abrt-action-analyze-python.1* -%{_mandir}/man1/abrt-action-analyze-xorg.1.gz -%{_mandir}/man1/abrt-auto-reporting.1.gz -%{_mandir}/man8/abrtd.8.gz -%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz -# {_mandir}/man5/pyhook.conf.5.gz +%{_mandir}/man1/abrt-action-analyze-xorg.1* +%{_mandir}/man1/abrt-auto-reporting.1* +%{_mandir}/man5/abrt.conf.5* +%{_mandir}/man5/abrt-action-save-package-data.conf.5* +%{_mandir}/man5/gpg_keys.conf.5* +%{_mandir}/man8/abrtd.8* +%{_sysusersdir}/abrt.conf %files libs -%defattr(-,root,root,-) %{_libdir}/libabrt.so.* -%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf -%{_datadir}/%{name}/conf.d/abrt.conf -%{_mandir}/man5/abrt.conf.5.gz %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins %dir %{_datadir}/%{name} -%dir %{_datadir}/%{name}/conf.d -%dir %{_datadir}/%{name}/conf.d/plugins # filesystem package should own /usr/share/augeas/lenses directory %{_datadir}/augeas/lenses/abrt.aug %files devel -%defattr(-,root,root,-) # The complex pattern below (instead of simlpy *) excludes Makefile{.am,.in}: %doc apidoc/html/*.{html,png,css,js} %{_includedir}/abrt/abrt-dbus.h @@ -837,73 +782,55 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_libdir}/pkgconfig/abrt.pc %files gui-libs -%defattr(-,root,root,-) %{_libdir}/libabrt_gui.so.* %files gui-devel -%defattr(-,root,root,-) %{_includedir}/abrt/abrt-config-widget.h %{_includedir}/abrt/system-config-abrt.h %{_libdir}/libabrt_gui.so %{_libdir}/pkgconfig/abrt_gui.pc %files gui -%defattr(-,root,root,-) %dir %{_datadir}/%{name} # all glade, gtkbuilder and py files for gui %{_datadir}/icons/hicolor/*/apps/* -%{_datadir}/icons/hicolor/*/status/* -%{_datadir}/%{name}/icons/hicolor/*/status/* %{_datadir}/%{name}/ui/* %{_bindir}/abrt-applet %{_bindir}/system-config-abrt #%%{_bindir}/test-report -%{_datadir}/applications/abrt-applet.desktop -%config(noreplace) %{_sysconfdir}/xdg/autostart/abrt-applet.desktop +%{_datadir}/applications/org.freedesktop.problems.applet.desktop +%config(noreplace) %{_sysconfdir}/xdg/autostart/org.freedesktop.problems.applet.desktop +%{_datadir}/dbus-1/services/org.freedesktop.problems.applet.service %{_mandir}/man1/abrt-applet.1* %{_mandir}/man1/system-config-abrt.1* -%files addon-coredump-helper -%defattr(-,root,root,-) -%{_libexecdir}/abrt-hook-ccpp -%{_sbindir}/abrt-install-ccpp-hook -%{_mandir}/man*/abrt-install-ccpp-hook.* - %files addon-ccpp -%defattr(-,root,root,-) %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf -%{_datadir}/%{name}/conf.d/plugins/CCpp.conf -%{_mandir}/man5/abrt-CCpp.conf.5.gz +%{_mandir}/man5/abrt-CCpp.conf.5* %{_libexecdir}/abrt-gdb-exploitable -%if %{with systemd} -%{_unitdir}/abrt-ccpp.service +%{_libexecdir}/abrt-action-coredump +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf %{_unitdir}/abrt-journal-core.service -%else -%{_initrddir}/abrt-ccpp -%endif +%{_journalcatalogdir}/abrt_ccpp.catalog -# attr(6755) ~= SETUID|SETGID -%attr(6755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache +%dir %{_localstatedir}/lib/abrt %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files -%{_bindir}/abrt-action-analyze-core %{_bindir}/abrt-action-analyze-vulnerability -%{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-generate-core-backtrace %{_bindir}/abrt-action-analyze-backtrace %{_bindir}/abrt-action-list-dsos -%{_bindir}/abrt-action-perform-ccpp-analysis %{_bindir}/abrt-action-analyze-ccpp-local %{_bindir}/abrt-dump-journal-core %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_event.conf -%{_mandir}/man5/ccpp_event.conf.5.gz +%{_mandir}/man5/ccpp_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/gconf_event.conf -%{_mandir}/man5/gconf_event.conf.5.gz +%{_mandir}/man5/gconf_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/vimrc_event.conf -%{_mandir}/man5/vimrc_event.conf.5.gz +%{_mandir}/man5/vimrc_event.conf.5* %{_datadir}/libreport/events/analyze_CCpp.xml %{_datadir}/libreport/events/analyze_LocalGDB.xml %{_datadir}/libreport/events/collect_xsession_errors.xml @@ -917,42 +844,23 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-action-generate-core-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* -%{_mandir}/man*/abrt-action-install-debuginfo.* %{_mandir}/man*/abrt-action-analyze-ccpp-local.* -%{_mandir}/man*/abrt-action-analyze-core.* %{_mandir}/man*/abrt-action-analyze-vulnerability.* -%{_mandir}/man*/abrt-action-perform-ccpp-analysis.* -%{_mandir}/man*/abrt-dump-journal-core.* +%{_mandir}/man1/abrt-dump-journal-core.1* %files addon-upload-watch -%defattr(-,root,root,-) %{_sbindir}/abrt-upload-watch -%if %{with systemd} %{_unitdir}/abrt-upload-watch.service -%else -%{_initrddir}/abrt-upload-watch -%endif %{_mandir}/man*/abrt-upload-watch.* -%files retrace-client -%{_bindir}/abrt-retrace-client -%{_mandir}/man1/abrt-retrace-client.1.gz -%config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf -%{_mandir}/man5/ccpp_retrace_event.conf.5.gz -%{_datadir}/libreport/events/analyze_RetraceServer.xml - %files addon-kerneloops -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf -%{_mandir}/man5/koops_event.conf.5.gz +%{_journalcatalogdir}/abrt_koops.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_koops_format.conf +%{_mandir}/man5/koops_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf -%{_datadir}/%{name}/conf.d/plugins/oops.conf -%if %{with systemd} %{_unitdir}/abrt-oops.service -%else -%{_initrddir}/abrt-oops -%endif %dir %{_localstatedir}/lib/abrt @@ -965,1971 +873,1179 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-oops.conf.5* %files addon-xorg -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf -%{_mandir}/man5/xorg_event.conf.5.gz -%if %{with systemd} +%{_journalcatalogdir}/abrt_xorg.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_xorg_format.conf +%config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf %{_unitdir}/abrt-xorg.service -%else -%{_initrddir}/abrt-xorg -%endif %{_bindir}/abrt-dump-xorg %{_bindir}/abrt-dump-journal-xorg %{_mandir}/man1/abrt-dump-xorg.1* %{_mandir}/man1/abrt-dump-journal-xorg.1* +%{_mandir}/man5/abrt-xorg.conf.5* +%{_mandir}/man5/xorg_event.conf.5* -%if %{?have_kexec_tools} == 1 %files addon-vmcore -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf -%{_mandir}/man5/vmcore_event.conf.5.gz +%{_mandir}/man5/vmcore_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/vmcore.conf -%{_datadir}/%{name}/conf.d/plugins/vmcore.conf %{_datadir}/libreport/events/analyze_VMcore.xml -%if %{with systemd} %{_unitdir}/abrt-vmcore.service -%else -%{_initrddir}/abrt-vmcore -%endif %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore -%{_bindir}/abrt-action-check-oops-for-hw-error %{_bindir}/abrt-action-check-oops-for-alt-component +%{_bindir}/abrt-action-check-oops-for-hw-error %{_mandir}/man1/abrt-harvest-vmcore.1* %{_mandir}/man5/abrt-vmcore.conf.5* %{_mandir}/man1/abrt-action-analyze-vmcore.1* %{_mandir}/man1/abrt-action-check-oops-for-hw-error.1* -%endif +%{_journalcatalogdir}/abrt_vmcore.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_vmcore_format.conf %files addon-pstoreoops -%defattr(-,root,root,-) -%if %{with systemd} %{_unitdir}/abrt-pstoreoops.service -%else -%{_initrddir}/abrt-pstoreoops -%endif %{_sbindir}/abrt-harvest-pstoreoops %{_bindir}/abrt-merge-pstoreoops %{_mandir}/man1/abrt-harvest-pstoreoops.1* %{_mandir}/man1/abrt-merge-pstoreoops.1* -%files addon-python -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf -%{_datadir}/%{name}/conf.d/plugins/python.conf -%{_mandir}/man5/abrt-python.conf.5.gz -# TODO? Do we need %%config(noreplace) in the below line too? -%config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf -%{_mandir}/man5/python_event.conf.5.gz -%{python_sitearch}/abrt*.py* -%{python_sitearch}/abrt.pth - -%files addon-python3 -%defattr(-,root,root,-) +%if %{with python3} +%files -n python3-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf -%{_datadir}/%{name}/conf.d/plugins/python3.conf -%{_mandir}/man5/abrt-python3.conf.5.gz +%{_mandir}/man5/python3-abrt.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/python3_event.conf -%{_mandir}/man5/python3_event.conf.5.gz -%{python3_sitearch}/abrt* -%{python3_sitearch}/__pycache__/abrt* +%{_journalcatalogdir}/python3_abrt.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf +%{_mandir}/man5/python3_event.conf.5* +%{python3_sitelib}/abrt3.pth +%{python3_sitelib}/abrt_exception_handler3.py +%{python3_sitelib}/__pycache__/abrt_exception_handler3.* + +%if %{with container_handler} +%files -n python3-abrt-container-addon +%{python3_sitelib}/abrt3_container.pth +%{python3_sitelib}/abrt_exception_handler3_container.py +%{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* +%endif + +%endif + +%files plugin-machine-id +%config(noreplace) %{_sysconfdir}/libreport/events.d/machine-id_event.conf +%{_libexecdir}/abrt-action-generate-machine-id %files cli -%defattr(-,root,root,-) %files tui -%defattr(-,root,root,-) -%{_bindir}/abrt-cli -%{_mandir}/man1/abrt-cli.1.gz - -%files cli-ng -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion +%if %{with python3} %{_bindir}/abrt -%{python_sitearch}/abrtcli/ -%{_mandir}/man1/abrt.1.gz +%{_bindir}/abrt-cli +%{python3_sitelib}/abrtcli/ +%{_mandir}/man1/abrt.1* +%{_mandir}/man1/abrt-cli.1* +%endif %files desktop -%defattr(-,root,root,-) %if %{with atomic} %files atomic -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp_Atomic.conf -%{_unitdir}/abrt-coredump-helper.service -%{_datadir}/%{name}/conf.d/plugins/CCpp_Atomic.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %{_bindir}/abrt-action-save-package-data -%{_mandir}/man1/abrt-action-save-package-data.1.gz -%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz +%{_mandir}/man1/abrt-action-save-package-data.1* +%{_mandir}/man5/abrt-action-save-package-data.conf.5* %endif +%if %{with bodhi} %files plugin-bodhi -%defattr(-,root,root,-) %{_bindir}/abrt-bodhi %{_bindir}/abrt-action-find-bodhi-update -%{_mandir}/man1/abrt-bodhi.1.gz -%{_mandir}/man1/abrt-action-find-bodhi-update.1.gz +%config(noreplace) %{_sysconfdir}/libreport/events.d/bodhi_event.conf +%{_datadir}/libreport/events/analyze_BodhiUpdates.xml +%{_mandir}/man1/abrt-bodhi.1* +%{_mandir}/man1/abrt-action-find-bodhi-update.1* +%endif %files dbus -%defattr(-,root,root,-) %{_sbindir}/abrt-dbus -%{_sbindir}/abrt-configuration -%{_mandir}/man8/abrt-dbus.8.gz -%{_mandir}/man8/abrt-configuration.8.gz +%{_mandir}/man8/abrt-dbus.8* %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf -%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.oops.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python.xml -%if %{?have_kexec_tools} == 1 -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.vmcore.xml -%endif -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xorg.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Entry.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Session.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Task.xml %{_datadir}/dbus-1/system-services/org.freedesktop.problems.service -%{_datadir}/dbus-1/system-services/com.redhat.problems.configuration.service %{_datadir}/polkit-1/actions/abrt_polkit.policy %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/ %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.html %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.css +%config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_dbus_event.conf -%files python -%{python_sitearch}/problem/ -%{_mandir}/man5/abrt-python.5.gz - -%files python-doc -%{python_sitelib}/problem_examples - -%files python3 +%if %{with python3} +%files -n python3-abrt %{python3_sitearch}/problem/ -%{_mandir}/man5/abrt-python3.5.gz +%{_mandir}/man5/python3-abrt.5* -%files python3-doc +%files -n python3-abrt-doc %{python3_sitelib}/problem_examples +%endif %files console-notification %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog -* Mon Jul 18 2016 Matej Habrnal 2.8.0.6 +* Fri Jan 16 2026 Fedora Release Engineering - 2.17.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Thu Dec 04 2025 Michal Srb - 2.17.8-1 +- a-a-save-container-data: validate input +- Resolves: CVE-2025-12744 + +* Thu Oct 02 2025 Michal Srb - 2.17.7-1 +- Update to upstream release 2.17.7 +- Fix reading gpg keys with RPM 6.0.0 (rhbz#2396899) + +* Fri Sep 19 2025 Python Maint - 2.17.6-10 +- Rebuilt for Python 3.14.0rc3 bytecode + +* Fri Aug 15 2025 Python Maint - 2.17.6-9 +- Rebuilt for Python 3.14.0rc2 bytecode + +* Fri Aug 01 2025 Adam Williamson - 2.17.6-8 +- Obsolete fros packages + +* Wed Jul 23 2025 Fedora Release Engineering - 2.17.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Jun 03 2025 Python Maint - 2.17.6-6 +- Rebuilt for Python 3.14 + +* Thu Jan 23 2025 Zbigniew Jędrzejewski-Szmek - 2.17.6-5 +- Add sysusers.d config file to allow rpm to create users/groups automatically + +* Thu Jan 16 2025 Fedora Release Engineering - 2.17.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Wed Nov 20 2024 David Abdurachmanov - 2.17.6-3 +- Disable Requires for kexec-tools on riscv64 (not supported) + +* Wed Sep 11 2024 Neal Gompa - 2.17.6-2 +- Drop container handler (rhbz#2295150) + +* Sun Sep 01 2024 Michal Srb - 2.17.6-1 +- Update to upstream release 2.17.6 +- Fix reading signature information from RPM headers (rhbz#2307278) + +* Wed Jul 17 2024 Fedora Release Engineering - 2.17.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sun Jun 09 2024 Python Maint - 2.17.5-2 +- Rebuilt for Python 3.13 + +* Mon Feb 19 2024 Michal Srb - 2.17.5-1 +- Update to upstream release 2.17.5 + +* Mon Feb 12 2024 Michal Srb - 2.17.4-1 +- Update to upstream release 2.17.4 + +* Sun Feb 04 2024 Michal Srb - 2.17.2-1 +- Update to upstream release 2.17.2 + +* Mon Jan 22 2024 Fedora Release Engineering - 2.17.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 2.17.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jul 19 2023 Fedora Release Engineering - 2.17.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sat Jul 01 2023 Python Maint - 2.17.1-2 +- Rebuilt for Python 3.12 + +* Fri Jun 30 2023 Michal Srb - 2.17.1-1 +- Update to upstream release 2.17.1 + +* Wed Jun 28 2023 Python Maint - 2.17.0-2 +- Rebuilt for Python 3.12 + +* Mon May 22 2023 Matěj Grabovský - 2.17.0-1 +- Update to upstream release 2.17.0 +- Bump rpm-devel dependency to 4.18 + +* Thu Mar 30 2023 Michal Srb - 2.16.1-1 +- Update to upstream release 2.16.1 + +* Wed Jan 18 2023 Fedora Release Engineering - 2.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Mon Oct 24 2022 Michal Srb - 2.16.0-1 +- Update to upstream release 2.16.0 + +* Wed Oct 19 2022 Michal Srb - 2.15.1-6 +- abrt-journal: First seek the journal tail and then set filters +- Resolves: rhbz#2128662 + +* Wed Oct 12 2022 Michal Srb - 2.15.1-5 +- abrt-journal: call sd_journal_get_fd() right after sd_journal_open() +- Resolves: rhbz#2128662 + +* Wed Jul 20 2022 Fedora Release Engineering - 2.15.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jun 16 2022 Michal Srb - 2.15.1-3 +- Fix FTBFS +- Resolves: rhbz#2093924 + +* Wed Jun 15 2022 Python Maint - 2.15.1-2 +- Rebuilt for Python 3.11 + +* Thu Mar 10 2022 Michal Srb - 2.15.1-1 +- Update to 2.15.1 + +* Wed Jan 19 2022 Fedora Release Engineering - 2.15.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jan 19 2022 Matěj Grabovský - 2.15.0-2 +- Rebuild for testing + +* Mon Jan 17 2022 Matěj Grabovský - 2.15.0-1 +- Bump abrt library version to 1:0:1 +- cli: Fix path and glob matching for abrt info etc. +- abrt-dump-oops: Fix vmcore call trace parsing +- Use lazy imports in abrt_exception_handler3 +- Don't copy coredump to problem dir +- Detect Python 3.10 and Perl correctly in abrt-action-save-package-data +- Fix calls to deprecated methods in tests +- Update translations + +* Wed Jan 12 2022 Miro Hrončok - 2.14.6-11 +- Make abrt-tui and python3-abrt-container-addon noarch as they contain no architecture-specific content +- Ensure Python bytecode in noarch subpackages is reproducible + +* Thu Jan 06 2022 Matěj Grabovský - 2.14.6-10 +- Bump release for rebuild + +* Wed Dec 22 2021 Matěj Grabovský - 2.14.6-9 +- Rebuild for satyr 0.39 + +* Mon Sep 27 2021 Matěj Grabovský - 2.14.6-8 +- Use lazy import in the Python exception handler to avoid slowdown in Python + startup (rhbz#2007664) + +* Wed Jul 21 2021 Fedora Release Engineering - 2.14.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sat Jul 10 2021 Björn Esser - 2.14.6-6 +- Rebuild for versioned symbols in json-c + +* Mon Jun 07 2021 Python Maint - 2.14.6-5 +- Rebuilt for Python 3.10 + +* Fri Jun 04 2021 Python Maint - 2.14.6-3 +- Rebuilt for Python 3.10 + +* Tue May 25 2021 Michal Fabik - 2.14.6-1 +- Add support of master + subkeys gpg. +- hooks: Remove stale workaround for a fixed bug +- cli: Gracefully handle disappearance of problem directory +- libs: Add version info script +- retrace-client: Output task ID to console in batch mode +- retrace-client: Separate commands by commas +- Doc: Improve man page for abrt-action-analyze-vulnerability +- Various memory management and other fixes + +* Fri Apr 30 2021 Sérgio Basto - 2.14.5-4 +- Obsoletes abrt-plugin-sosreport, to fix upgrade path + +* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek - 2.14.5-3 +- Rebuilt for updated systemd-rpm-macros + See https://pagure.io/fesco/issue/2583. + +* Mon Jan 25 2021 Fedora Release Engineering - 2.14.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Dec 01 2020 Michal Fabik 2.14.5-1 +- Fix invalid free (rhbz#1895660) +- Fix crash during local processing (rhbz#1881745) +- Fix reported numbers of missing debuginfo packages in abrt-action-install-debuginfo +- Correct the format of NEVRA generated for packages where a problem occurred (rhbz#1900982) +- Drop --raw flag in abrt-action-generate-core-backtrace + +* Tue Oct 13 2020 Matěj Grabovský - 2.14.4-3 +- Add upstream patch for an invalid read bug + +* Thu Sep 24 2020 Matěj Grabovský - 2.14.4-2 +- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1881745 + +* Mon Aug 17 2020 Michal Fabik - 2.14.4-1 +- Fix broken release 2.14.3 +- oops-utils: Respect the 'world-readable' flag +- Decommission libreport_list_free_with_free + +* Thu Aug 13 2020 Michal Fabik - 2.14.3-1 +- plugins: abrt-dump-journal-core: Handle zstd compression +- applet: application: Use GLib for logging +- Replace various utility functions with stock GLib ones +- Various coding style improvements +- Update documentation +- applet: application: Fix crash when processing deferred problems +- dbus: Remove session objects when owner disconnects +- python-problem: Use org.freedesktop.Problems2 API +- abrt-console-notification: Work around noclobber +- daemon: rpm: Use NEVRA instead of ENVRA +- abrtd: Don't delete new problem dirs +- Make sure that former caches are group writable +- Various memory management fixes + +* Thu Aug 13 2020 Adam Williamson - 2.14.2-6 +- Rebuild for libreport soname bump + +* Tue Jul 28 2020 - Ernestas Kulik - 2.14.2-5 +- Add patch for https://bugzilla.redhat.com/show_bug.cgi?id=1860903 + +* Mon Jul 27 2020 Fedora Release Engineering - 2.14.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 2.14.2-3 +- Rebuilt for Python 3.9 + +* Thu May 21 2020 Ernestas Kulik - 2.14.2-2 +- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1836190 + +* Tue May 12 2020 Michal Fabik - 2.14.2-1 +- Fix broken builds with --enable-authenticated-autoreporting + +* Fri Apr 24 2020 Michal Fabik - 2.14.1-1 +- tests: Add perl, php R and tcl to dont-blame-interpret +- a-a-save-package-data: Add R and tcl to interpreted langs +- a-a-save-package-data: Use regexps to match interpreters +- .travis.yml: Update secret +- plugins: xorg-utils: Loopify parsing +- Add namespace to libreport function and global names +- cli: Correct debug directories in config +- cli: Show defaults in help output +- cli: Fix verbosity option +- cli: Fix descriptions for --since and --until +- autogen.sh: Handle NOCONFIGURE per the Build API +- plugins: journal: Fix ci_mapping being overwritten +- plugins: abrt-journal-core: Don’t assume anything about uid_t +- lib,plugins: Accomodate for multiple debug directories +- dbus: Drop bogus dependency +- dbus: Drop abrt_problems2 +- Drop libcap dependency +- Drop Travis config + +* Tue Apr 21 2020 Björn Esser - 2.14.0-3 +- Rebuild (json-c) + +* Fri Feb 07 2020 Ernestas Kulik - 2.14.0-2 +- Bump libreport dependency + +* Fri Feb 07 2020 Ernestas Kulik - 2.14.0-1 +- Update to 2.14.0 + +* Fri Feb 07 2020 Igor Raits - 2.13.0-5 +- Rebuild for satyr 0.30 + +* Fri Jan 31 2020 Martin Kutlak - 2.13.0-4 +- Add patch to fix build failure with gcc -fno-common +- Initialize bodhi karma values with defaults +- Fix possibly uninitialized variable +- Resolves: #1795820 + +* Tue Jan 28 2020 Fedora Release Engineering - 2.13.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 14 2020 - Ernestas Kulik - 2.13.0-2 +- Drop systemd scriptlets for abrt-ccpp.service + +* Fri Oct 11 2019 Matěj Grabovský 2.13.0-1 +- cli: Use format argument in info command +- cli: Make pretty and format mutually exclusive +- cli: Set PYTHONPATH for tests +- cli: Rework commands +- Remove abrt-hook-ccpp +- spec: Use macros where appropriate +- tests: Use Augeas consistently +- spec: Move config files to corresponding subpackages +- build,spec: Empty config files in /etc/abrt/ +- doc: Update man pages and comments in config files +- plugins: Update in-code defaults +- doc: Correct alignment of heading underlines +- a-dump-journal-core: Purge commented code +- dbus: Remove D-Bus configuration service +- Partly revert removal of default configs +- cli: Tweak problem matching +- plugins: Add satyr flags when building +- cli: Fix warning +- cli: Fix file name +- cli: Use decorator for MATCH positional argument +- cli: match: Iterate dict instead of calling keys() +- cli: Make pylint happier about imports +- cli: Drop unused variables +- cli: utils: Use consistent return +- cli: Improve i18n +- cli: Drop humanize import +- Drop uses of bind_textdomain_codeset() +- gitignore: Update path to generated file after cli-ng move +- tests: runner: Use systemctl instead of service +- autogen.sh: Use autoreconf + +* Thu Oct 03 2019 Miro Hrončok - 2.12.2-3 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Sat Aug 17 2019 Miro Hrončok - 2.12.2-2 +- Rebuilt for Python 3.8 + +* Thu Aug 01 2019 Ernestas Kulik 2.12.2-1 +- Remove old CLI and move cli-ng subpackage files into tui subpackage + +* Wed Jul 24 2019 Fedora Release Engineering - 2.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Jul 12 2019 Martin Kutlak 2.12.1-2 +- Add patch to fix failing action abrt-action-list-dsos on rawhide + +* Wed Jul 03 2019 Martin Kutlak 2.12.1-1 - Translation updates +- Rename all abrt-python to python3-abrt +- spec: Get rid of python provides +- hooks: abrt-hook-ccpp: Rename CreateCoreBacktrace setting +- Update icon +- non-fatal-mce: prepare oops1.test from template before using it +- meaningful-logs: check relative counts of lines instead of absolute +- oops-processing: fixed oops1.test handling. reworked so each oops has its own phase +- dumpoops: make sure hostname matches in oops_full_hostname.test +- Revert "applet: Add systemd service unit" +- a-a-analyze-c: Fix segfault when saving function name +- Fix grammar in implementation docs +- doc: Update man pages and mention locations of config files +- augeas,build,spec: Remove references to default configs +- daemon,lib: Update default config according to abrt.conf +- plugins: abrt-action-install-debuginfo: Replace uses of exit() +- plugins: abrt-action-install-debuginfo: Catch BrokenPipeError +- plugins: abrt-action-install-debuginfo: Remove unused imports +- daemon: Check return value after reading from channel +- spec: Require dbus-tools +- daemon: Don't process crashes from unpackaged apps by default +- plugins: abrt-action-install-debuginfo: Remove duplicate code +- plugins: abrt-action-install-debuginfo: Remove variable +- plugins: abrt-action-install-debuginfo: Remove comment +- plugins: abrt-action-install-debuginfo: Remove dead assignment +- doc: Fix spelling mistake in path to cache +- doc: Update man page for abrt-handle-upload +- doc: Update man page and help for a-a-install-debuginfo +- Nuke Python 2 support +- plugins: Catch unhandled exception in a-a-g-machine-id +- plugins: retrace-client: Bail out if we can’t get a config +- plugins: retrace-client: Default to HTTPS in RETRACE_SERVER_URI +- plugins: analyze_RetraceServer: Fix default RETRACE_SERVER_URI +- plugins: Fix name of env variable for retrace server +- configure.ac: Add dependency on libcap +- dbus: entry: Don’t claim truncation when there was none +- applet: Add systemd service unit +- spec: Remove obsolete scriptlets +- Makefile.am: Use correct locale when getting date + +* Mon Jun 10 22:13:16 CET 2019 Igor Gnatenko - 2.12.0-4 +- Rebuild for RPM 4.15 + +* Mon Jun 10 15:41:59 CET 2019 Igor Gnatenko - 2.12.0-3 +- Rebuild for RPM 4.15 + +* Tue Feb 5 2019 Ernestas Kulik - 2.12.0-2 +- Bump glib and libreport dependencies + +* Mon Feb 4 2019 Ernestas Kulik - 2.12.0-1 +- Update to 2.12.0 + +* Thu Jan 31 2019 Fedora Release Engineering - 2.11.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jan 27 2019 Igor Gnatenko - 2.11.1-4 +- Remove obsolete scriptlets + +* Tue Jan 08 2019 Matej Marusak 2.11.1-2 +- dbus: task: Use modern GLib type macros + +* Tue Jan 08 2019 Matej Marusak 2.11.1-1 +- Translation updates +- a-a-install-debuginfo: Clean cache if we need space +- shellcheck: Use command instead of type +- shellcheck: Check exit code directly with if mycmd +- shellcheck: Suppress shellcheck warning SC1090 +- shellcheck: Use $(...) instead of legacy backticked +- cli: Add a shebang +- applet: Port to GApplication/GNotification +- spec: Add explicit package-version requirement of abrt-libs +- Introduce pylintrc +- augeas: Adjust testsuite to changes in libreport +- signal_is_fatal: generate problem reports for SIGSYS +- plugins: retrace-client: Port to libsoup +- plugins: retrace-client: Fix copy-paste error +- revert: spec: disable addon-vmcore on aarch64 +- spec: turn on --enable-native-unwinder aarch64 +- configure: Replace sphinx-build check with sphinx-build-3 +- a-a-c-o-f-hw-error: Check systemd-journal for MCE logs +- koops: Filter kernel oopses based on logged hostname +- add hostname BR for tests +- add new prepare-data to dist files +- fix tests names for dist target after making templates from them +- fix for MCE events: Bug 1613182 - abrt-cli ignores rsyslog host info and incorrectly assumes that the receiving host had a problem +- dbus: Add configuration for Python3 +- Add . to etc + +* Mon Oct 08 2018 Martin Kutlak 2.11.0-1 +- Translation updates +- plugins: Allow abrt-retrace-client to be optional at build time +- daemon: Fix double closed fd race condition +- sosreport: plugin "general" split into two new plugins +- plugins: Replace vfork with posix_spawn +- gui-config: Remove deprecated GTK functions +- abrtd.service: force abrt-dbus to load changes from conf +- spec: Build python*-abrt-addon packages as noarch +- spec: remove duplicated python3-devel +- spec: set PYTHON variable because of ./py-compile + +* Sat Sep 15 2018 Adam Williamson - 2.10.10-5 +- Backport fix for RHBZ #1629408 (failed gdb backtrace generation) +- Backport fix for deprecated function use (broke build) +- Backport fix for argument error in harvest_vmcore +- Backport fix for missing parameter translations in abrt-hook-ccpp + +* Thu Jul 12 2018 Fedora Release Engineering - 2.10.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Jun 18 2018 Miro Hrončok - 2.10.10-3 +- Rebuilt for Python 3.7 + +* Fri Jun 08 2018 Miro Hrončok - 2.10.10-2 +- Set PYTHON to python3 during install to avoid ambiguous python invocation (#1589314) + +* Thu May 31 2018 Matej Marusak 2.10.10-1 +- Translation updates +- Changelog: Update changelog +- Remove dependency on deprecated nss-pem +- spec: abrt do not require python2 +- spec: abrt-addon-ccpp do not require python2 +- spec: drop python2-abrt-addon requires +- spec: fix bugs in python requires +- cores: comment an unclearing statement +- cores: print to stdout +- cores: read all journal files + +* Thu May 10 2018 Matej Habrnal 2.10.9-5 +- abrt do not require python2 if "with python3" + +* Wed May 09 2018 Matej Habrnal 2.10.9-4 +- abrt-addon-ccpp do not require python2 if "with python3" + +* Thu May 03 2018 Matej Habrnal 2.10.9-3 +- drop python2-abrt-addon requires + +* Fri Apr 27 2018 Matej Habrnal 2.10.9-2 +- fix requires for python in spec file + +* Fri Apr 27 2018 Matej Habrnal 2.10.9-1 +- build: conditionalize the Python2 and Python3 +- cli-ng,hooks,python-problem: Allow python to be optional at build time +- spec: fix ambiguous Python 2 dependency declarations +- plugins: a-a-g-machine-id use dmidecode command +- spec: use dmidecode instead of python3-dmidecode +- hooks: use container-exception-logger tool +- spec: container python hooks require cel +- hooks: do not write any additional logs +- a-a-s-package-data: add python3.7 to known Interpreters +- autogen: ignore abrt's python packages +- correctly parse buildrequires from spec file + +* Wed Mar 21 2018 Matej Habrnal 2.10.8-1 +- Translation updates +- spec: use Python3 as default in abrt-cli-ng +- cli-ng: use Python3 as default +- Add a new element 'interpreter' for python problems +- retrace-client: Require nss-pem + +* Mon Feb 26 2018 Matej Habrnal 2.10.7-1 +- Translation updates +- hooks: introduce docker hook for Python2 +- hook: add type to Python3 container exception handler +- spec: introduce docker hook for Python2 +- Add ABRT hexa stickers +- a-container-logger: workaround permission issue in minishift + +* Mon Feb 19 2018 Matej Habrnal 2.10.6-1 +- Translation updates +- hooks: introduce docker hook for Python3 +- spec: introduce Python3 hook for container +- Remove deprecated is_error macro +- ldconfig is not needed in rawhide +- remove python_sitearch macro +- remove python_site macro +- move BuildRequires to top +- remove systemd-units and replace it with systemd macro +- remove init.d services +- a-h-event: Do not deduplicate different containers +- rpm: include epocho in package element if > 0 + +* Thu Nov 02 2017 Julius Milan 2.10.5-1 +- Translation updates +- a-action-ureport: add option 'ProcessUnpackaged' +- spec: change dependency on python{2,3}-gobject +- applet: Additional changes to allow optional polkit +- doc: remove obsolete doxygen tags +- dbus: Additional changes to allow optional polkit +- cli-ng: Explicitly state python version in shebangs +- spec: rename python binary packages +- a-d-journal-core: Save mountinfo from journal +- a-d-journal-core: Save container cmdline +- logging: rename omitted log() to log_warning() + +* Mon Aug 28 2017 Matej Habrnal 2.10.4-1 +- Translation updates +- logging: rename log() to log_warning() +- Quick hack to fix build with rpm >= 4.14 +- tests: Crash different binary in infinite event loop +- tests: Revert not sufficient fix +- tests: Reflect field changes in reporter-s-journal +- tests: Get docker-inspect while container is running +- cli,dbus: Allow polkit to be optional at build time +- spec: add dependency for python{3}-gobject +- a-d-journal-core: fix bad condition in creating reason msg +- a-d-journal-core: use pid of crashed process in dumpdir name +- changelog: update CHANGELOG.md + +* Thu Jun 15 2017 Martin Kutlak 2.10.3-1 +- Translation updates +- applet: add a default action to a notification +- spec: require libreport-plugin-systemd-journal on Fedoras +- changing load location from bin to libexec +- changing location of abrt-action-save-container-data from bin to libexec +- koops: Improve not-reportable for oopses with taint flags +- This fixes #1173 +- python: provide more information about exception +- abrt-journal: adapt to suspicious blacklist addition +- koops: add suspicious strings blacklist +- build: fix changelog adding in release target +- changelog: update CHANGELOG.md + +* Tue Apr 25 2017 Matej Habrnal 2.10.2-1 +- Translation updates +- spec: introduce migration to abrt-journal-core +- abrt_event: Save cpuinfo in problem directories +- koops: Improve fatal MCE check when dumping backtrace +- lib: typo in header +- Spelling fixes +- Python 3.6 invalid escape sequence deprecation fix +- koops_event: add check to restrict reporting of MCEs + +* Thu Mar 16 2017 Matej Habrnal 2.10.1-1 +- changelog: update CHANGELOG.md +- build: create tarball in release-* target +- spec: sosreport is not a package +- Fix Typo +- bodhi: Remove dependency on hawkey +- spec: Remove dependency on hawkey +- build: do not upload tarball to fedorahosted.org +- spec: do not use fedorahosted.org as source +- spec: install new plugins +- plugins: introduce Machine ID and SOS report +- Update CHANGELOG.md +- build: fix generating list of dependences in autogen.sh +- spec: start abrt-journal-core instead of abrt-ccpp +- build: fix scratch-build target +- a-a-ureport: fix calling of run_event_on_problem_dir +- spec: if using systemd, default to os-release ID for desktopvendor +- kernel: modify suspicious string "invalid opcode:" +- daemon: Allow rpm to be optional at build time +- spec: allow any compression of man pages +- spec: remove defattr +- spec: remove cleaning buildroot +- spec: use versioned provides +- spec: remove changelog entries older than 2 years +- remove Buildroot and Groups tags +- spec: recommend libreport-plugin-systemd-journal on Fedoras +- doc: document selinux change needed for automatic deletion of reports +- ccpp: tell gdb to analyze saved binary image + +* Sat Dec 03 2016 Jakub Filak 2.10.0-1 +- Translation updates +- spec: bump required libreport and satyr versions +- build: make the release-* targets smarter +- Add CHANGELOG.md +- a-a-notify: set env var before run report_systemd-journal event +- use run_event_on_problem_dir() helper for running events +- notify: do not require package element +- spec: add catalog_journal_ccpp_format.conf file +- reporter-s-journal: add formatting file for abrt-journal-core analyser +- cli-ng: fix --fmt parameter +- python: create analyzer element in dumpdir +- abrt-action-list-dsos: fix typo in vendor variable name +- cli-ng: chown problem before reporting +- lib: stop printing out a debug message 'adding: ' +- cli: print out the not-reportable reason +- cli: configure libreport to ignore not-reportable +- cli-ng: force reporting even if not-reportable +- cli-ng: introduce verbose argument +- Import GObject from gi.repository +- ccpp: configure package repositories for correct OS +- a-a-s-c-data: adapt to current docker +- daemon: don't drop problems from unknown containers +- a-a-s-c-data: correct detection of container type +- spec: install Bodhi event files +- bodhi: factor out Bodhi updates lookup into a solo event +- problems2: update the documentation +- a-a-analyze-python: create exception_type element +- a-a-analyze-xorg: create crash_function into dump dir +- koops: create crash_function element +- a-a-analyze-python: create crash_function element +- a-a-analyze-c: create crash_function element +- spec: add formatting files for reporter-systemd-journal +- reporter-systemd-journal: add formatting files +- vmcore: /var/tmp/abrt is no longer a dump location +- events: add event report_systemd-journal to all addons +- abrt-action-notify: notify to systemd journal +- spec: add abrt's catalog source files +- journal-catalog: add abrt's catalog source files +- ccpp: retain partial core_backtrace upon error +- ccpp: log waitpid errors +- ccpp: inform users about not supported unwinding +- ccpp: close stdin when we can let the process die +- daemon: properly shutdown socket connection +- daemon: close forgotten FD to /proc/[pid] +- ccpp: pass proc pid FD instead of pid to *_at fns +- ccpp+daemon: pass valid params to dd_open_item() +- python: remove unused functions from sysexcept hook +- build: add gettext-devel to sysdeps +- spec: add libcap-devel to BRs of addon-ccpp +- ccpp: avoid running elfutils under root +- Add abrt-action-analyze-vulnerability to .gitignore +- build: autoge.sh without args configures for debugging +- conf: increase MaxCrashReportsSize to 5GiB +- ccpp: fast dumping and abrt core limit +- CI: make debugging easier with more log messages +- doc: add a guide for ABRT hackers +- vmcore: fix an undefined variable on error path +- vmcore: read kdump.conf from an arbitrary location +- ccpp: use libreport 'at' functions +- ccpp: use abort() to exit in debug mode +- python2: stop generating dso_list in the process +- python: stop collecting ENVIRON in the process +- abrtd: details of processes from different PID NS +- abrtd: save interesting process details +- a-a-s-package-data: add python3.6 to known Interpreters +- spec: update gdb Requires +- tree-wide: make path to GDB configurable +- a-a-ureport: print out exit codes in verbose mode +- daemon: stop replacing analyzer with type + +* Fri Sep 09 2016 Jakub Filak 2.9.0-1 +- spec: install abrt_dbus_event.conf +- dbus: use Problems2 API in abrt-dbus +- dbus: Problems2 API implementation +- spec: install Problems2 interfaces +- dbus-doc: rewrite the XML to Problems2 +- Fix memory leaks +- lib: introdcue a function checking post-create name +- abrtd: change HTTP response code for duplicate problems to 303 +- autogen: fix typo in usage help string +- daemon: send base names from abrt-server to abrtd +- lib: normalize slashes of configured paths +- lib: make configuration paths alterable at runtime +- Add generated CCpp.conf to .gitignore +- abrt-bodhi: use CCpp PackageManager configuration directive from configure +- cli: introduce unsafe reporting for not-reporable problems +- handle-event: stop creating post-create lock +- daemon: trigger dump location cleanup after detection +- hook-ccpp: dump own core file in debug mode + +* Mon Jul 18 2016 Matej Habrnal 2.8.2-1 +- Translation updates +- abrt-hook-ccpp: Fix mismatching argument +- Allow selinux to be optional at build time - vmcore: use findmnt to get mountpoint +- spec: add utils-linux to vmcore's Require - vmcore: fix finding partitions by UUID and LABEL - a-a-install-debuginfo: Exception may not have an argument errno - koops: do not assume version has 3 levels +- Add ARM specific oops backtrace processing. +- examples: add oops-kernel-panic-hung-tasks-arm +- Add oops processing for kernel panics caused by hung tasks. +- abrt-hook-ccpp: save get_fsuid() return values in int variables + +* Wed May 25 2016 Matej Habrnal 2.8.1-1 - a-dump-journal-xorg: allow *libexec/X* to be executable element - a-dump-journal-xorg: add '_COMM=gnome-shell' to journal filter +- build: update pkg names for systemd +- a-d-journal-core: save core dump bytes from the journal field +- a-d-journal-core: support lz4 compressed core dump files +- a-a-install-debuginfo: do not try to split None - doc: improve documentation of AllowedGroups, AllowedUsers and IgnoredPaths +- testcase: add serial field to uReport check - a-a-install-debuginfo: correct handling of DebuginfoLocation +- a-a-s-container-data: update docker container ID parser +- abrt-hook-ccpp: drop saving of container env vars - a-console-notification: do not leak variables -- Merge a-a-save-kernel-data with a-a-save-package-data -- Resolves: #1334084, #1343826 - -* Wed Apr 27 2016 Matej Habrnal 2.8.0.5 -- revert: turn off compat cores -- Resolves: #1330734 - -* Fri Apr 08 2016 Matej Habrnal 2.8.0.4 +- a-retrace-client: format security +- daemon: avoid infinite crash loops +- spec: drop abrt-action-save-kernel-data bits - spec: README -> README.md - Add basic documentation - a-a-install-debuginfo: fix BrokenPipe error - a-a-install-debuginfo: make tmpdir variable global -- Resolves: #1255259 - -* Tue Feb 23 2016 Matej Habrnal 2.8.0-3 -- translation updates -- blacklist Firefox's plugin-container -- turn off compat cores - -* Wed Feb 10 2016 Matej Habrnal 2.8.0-2 -- drop %e from the core_pattern +- python3 addon: workaround a bug in traceback +- CCpp: turn off compat cores +- a-a-save-package-data: blacklist /usr/lib(64)/firefox/plugin-container +- Fix minor typo: possition -> position +- translations: add missing new line +- Translation updates +- translations: update zanata configuration +- ccpp: drop %e from the core_pattern +- Save Vendor and GPG Fingerprint * Wed Feb 03 2016 Matej Habrnal 2.8.0-1 - a-a-save-package-data: do not blacklist firefox * Tue Feb 02 2016 Matej Habrnal 2.7.2-1 +- ccpp: bug fix - undefined variables +- a-a-c-o-f-hw-error: fix unicode error +- ccpp: use error_msg_ignore_crash() instead of error_msg() - ccpp: add AllowedUsers and AllowedGroups feature +- doc: fix formatting in abrt.conf man page - ccpp: use executable name from pid - a-a-c-o-f-hw-error: do not crash on invalid unicode +- Use %s instead of %d. - configui: link GUI library with libabrt.so +- Do not include system libabrt.h - ccpp: unify log message of ignored crashes - ccpp: add IgnoredPath option -- Resolves: #1277872, #1287302, #1291976 +- lib: check_recent_crash_file do not produce error_msg * Mon Nov 23 2015 Jakub Filak 2.7.1-1 -- CVE-2015-5287: switch owner of /var/spool/abrt to 'root' -- CVE-2015-5287: ccpp: save abrt core files only if DebugLevel > 0 -- CVE-2015-5287: ccpp: save abrt core files only to new files -- CVE-2015-5287: abrt configuration: introduce DebugLevel -- CVE-2015-5273: a-a-i-d-to-abrt-cache: make own random temporary directory +- spec: switch owner of the dump location to 'root' +- abrtd: switch owner of the dump location to 'root' +- lib: add convenient wrappers for ensuring writable dir +- ccpp: save abrt core files only to new files +- ccpp: ignore crashes of ABRT binaries if DebugLevel == 0 +- conf: introduce DebugLevel +- a-a-i-d-to-abrt-cache: make own random temporary directory +- update .gitignore - ccpp: make crashes of processes with locked memory not-reportable +- a-a-s-p-data: fix segfault if GPGKeysDir isn't configured +- a-dump-journal-xorg: make journal filter configurable +- doc: a-a-analyze-xorg fix path to conf file +- abrt-journal: use GList instead of char** in abrt_journal_set_journal_filter() - xorg: introduce tool abrt-dump-journal-xorg - abrt-xorg.service: change due to abrt-dump-journal-xorg +- journal: add function abrt_journal_get_next_log_line +- spec: add abrt-dump-journal-xorg to spec file +- xorg: rewrite skip_pfx() function to work with journal msgs +- xorg: introduce library xorg-utils +- dbus: ensure expected bytes width of DBus numbers - a-d-journal-core: set root owner for created dump directory +- doc: add missing man page for abrt-dump-journal-core - spec: add missing man page for abrt-dump-journal-core -- Resolves: #1262252, #1284557 -* Wed Oct 28 2015 Jakub Filak 2.7.0-2 -- Fix broken problem details in abrt-cli/gnome-abrt -- Resolves: #1256456 - -* Fri Oct 16 2015 Matej Habrnal 2.7.0-1 +* Thu Oct 15 2015 Matej Habrnal 2.7.0-1 +- abrt-python: add problem.chown +- a-a-a-ccpp-local don't delete build_ids +- update .gitignore +- spec: add cli-ng - cli-ng: initial + +* Thu Oct 15 2015 Matej Habrnal 2.6.3-1 - bodhi: introduce wrapper for 'reporter-bugzilla -h' and 'abrt-bodhi' +- remove random code example from abrt-server +- spec: introduce abrt-action-find-bodhi-update +- api: fix pths -> paths rename - handle-event: remove obsolete workaround - remove 'not needed' code +- events: fix example wording - doc: change /var/tmp/abrt to /var/spool/abrt +- doc: actualize core_pattern content in documentation - doc: fix default DumpLocation in abrt.conf man page +- events: improve example +- events: comments not needed anymore +- abrt-retrace-client: use atoll for _size conversion - abrt-dump-xorg: support Xorg log backtraces prefixed by (EE) -- Resolves #1264739 - -* Tue Sep 15 2015 Matej Habrnal 2.6.2-7 -- doc: actualize the abrt-bodhi man page +- runtests: more verbose fail in get_crash_path +- ureport-auth: force cp/mv when restoring configuration +- runtests: stick to new BZ password rules +- bodhi: fix typo in error messages - bodhi: fix a segfault when testing an os-release opt for 'rawhide' -- Resolves: #1260259 - -* Sat Sep 05 2015 Kalev Lember - 2.6.2-6 -- Rebuilt for librpm soname bump - -* Wed Aug 26 2015 Matej Habrnal 2.6.2-5 +- doc: actualize the abrt-bodhi man page +- autogen: use dnf instead of yum to install dependencies - bodhi: add parsing of error responses - bodhi: add ignoring of Rawhide -- do not break the reporting if a-bodhi fails +- ccpp: do not break the reporting if a-bodhi fails - spec: add hawkey to BRs of abrt-bodhi - introduce bodhi2 to abrt-bodhi +- a-handle-upload: pass bytes to file.write() +- upload a problem data in the EVENT 'notify' +- turn off several post-create scripts for remote problems - convert all 'ex.message' stmts to 'str(ex)' -- don't start reporting of not-reportable problems -- add bash on the package blacklist - -* Fri Aug 14 2015 Matej Habrnal 2.6.2-4 -- ccpp - use global TID -- fix comment related to 'MakeCompatCore' option in CCpp.conf -- fix testing of DBus API return codes -- dbus-api: unify reporting of errors -- fix related to conditional compilation of man page -- abrt-auto-reporting: fix related to conditional compilation +- cli: don't start reporting of not-reportable problems +- a-a-s-p-d: add bash on the package blacklist - correct usage of abrt-gdb-exploitable -- Resolves: #1245600, #1252590 - - -* Fri Jul 24 2015 Matej Habrnal 2.6.2-3 -- read vmcore by chunks +- testsutie: first wait_for_hooks, then get_crash_path +- ccpp: use global TID +- ccpp: fix comment related to 'MakeCompatCore' option in CCpp.conf +- cli: fix testing of DBus API return codes +- dbus-api: unify reporting of errors +- doc: fix related to conditional compilation of man page +- abrt-auto-reporting: fix related to conditional compilation +- vmcore: read vmcore by chunks - pass encoded Unicode to hashlib.sha1.update() - abrt-merge-pstoreoops: merge files in descending order - -* Wed Jul 22 2015 Matej Habrnal 2.6.2-2 - use gettext instead of lgettext in all python scripts -- Resolves: #1245600 +- gitignore: add a generated man page source file * Fri Jul 17 2015 Jakub Filak 2.6.2-1 -- switch to Python 3 -- reassign components of certain Kernel oopses to xorg-x11-drv-* -- de-prioritize post-mortem processes - applet: do not crash if the new problem has no command_line -- abrt-hook-ccpp: do not crash if generate_core_backtrace fails -- cli: enable authentication for all commands -- Resolves: #1192080 +- ccpp: do not crash if generate_core_backtrace fails +- abrt: Fixup component of select kernel backtraces +- abrtd: de-prioritize post-create event scripts +- spec: switch python Requires to python3 +- switch all python scripts to python3 +- spec: drop abrt-addon-python requires +- a-dump-oops: allow update the problem, if more then one oops found +- cli: use internal command impl in the command process +- cli: remove useless code from print_crash() +- cli: enable authetication for all commands -* Fri Jul 03 2015 Matej Habrnal 2.6.1-1 -- keep the polkit authorization for all clients -- enable polkit authentication on command line -- use TID to find crash thread -- remove PyGObject from all Requires -- update version of gdb because of -ascending -- make it easier to find the backtrace of th crash thread -- save TID in the file 'tid' -- get TID from correct cmd line argument -- add option always generate backtrace locally -- add processor information to sosreport -- update abrt-cli man page -- Resolves #1217901 - -* Tue Jun 16 2015 Fedora Release Engineering - 2.6.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild +* Thu Jul 02 2015 Matej Habrnal 2.6.1-1 +- dbus: keep the polkit authorization for all clients +- cli: enable polkit authentication on command line +- spec: --enable-dump-time-unwind by default +- ccpp: use TID to find crash thread +- spec: remove PyGObject from all Requires +- spec: update version of gdb because of -ascending +- lib: make it easier to find the backtrace of th crash thread +- ccpp: save TID in the file 'tid' +- ccpp: get TID from correct cmd line argument +- configui: add option always generate backtrace locally +- a-a-p-ccpp-analysis: use ask_yes_no_save_result instead of ask_yes_no_yesforever +- spec: use more appropriate url +- spec: abrt requires libreport-plugin-rhtsupport on rhel +- sosreport: add processor information to sosreport +- doc: update abrt-cli man page * Tue Jun 09 2015 Jakub Filak 2.6.0-1 -- move the default dump location to /var/spool/abrt from /var/tmp/abrt +- spec: add abrt-dbus to Rs of abrt-python +- vmcore: use libreport dd API in the harvestor +- ccpp: don't save the system logs by default +- cli: exit with the number of unreported problems +- spec: restart abrt-dbus in posttrans +- cli: chown before reporting - hooks: use root for owner of all dump directories - ccpp: do not unlink failed and big user cores -- ccpp: don't save the system logs by default -- ccpp: stop reading hs_error.log from /tmp -- ccpp: emulate selinux for creation of compat cores +- ccpp: include the system logs only with root's coredumps - koops: don't save dmesg if kernel.dmesg_restrict=1 -- dbus: validate passed arguments +- daemon, dbus: allow only root to create CCpp, Koops, vmcore and xorg +- daemon: allow only root user to trigger the post-create +- daemon: harden against race conditions in DELETE +- ccpp: revert the UID/GID changes if user core fails +- a-a-i-d-t-a-cache: sanitize umask +- a-a-i-d-t-a-cache: sanitize arguments +- dbus: report invalid element names +- dbus: avoid race-conditions in tests for dum dir availability +- dbus: process only valid sub-directories of the dump location +- lib: add functions validating dump dir +- daemon: use libreport's function checking file name +- configure: move the default dump location to /var/spool +- ccpp: avoid overriding system files by coredump +- spec: add libselinux-devel to BRs +- ccpp: emulate selinux for creation of compat cores +- ccpp: harden dealing with UID/GID +- ccpp: do not use value of /proc/PID/cwd for chdir +- ccpp: do not override existing files by compat cores +- ccpp: stop reading hs_error.log from /tmp +- ccpp: fix symlink race conditions - turn off exploring crashed process's root directories -- abrt-python: bug fixes and improvements -- fixes for CVE-2015-3315, CVE-2015-3142, CVE-2015-1869, CVE-2015-1870 -- fixes for CVE-2015-3147, CVE-2015-3151, CVE-2015-3150, CVE-2015-3159 -- spec: add abrt-dbus to Rs of abrt-python and abrt-cli -- spec: restart abrt-dbus in posttrans - -* Wed May 20 2015 Matej Habrnal 2.5.1-3 -- applet: fix problem info double free -- upload: validate and sanitize uploaded dump directories -- applet: switch to D-Bus methods -- lib: add new kernel taint flags -- abrt-auto-reporting: require rhtsupport.conf file only on RHEL -- doc, polkit: Spelling/grammar fixes -- applet: migrate Autoreporting options to GSettings -- config UI: read glade from a local file first +- abrt-python: add proper PYTHONPATH to test shellscripts +- abrt-python: unify unknown problem type handling +- abrt-python: add not_reportable properties +- spec: remove analyzer to type conversion +- abrt-python: add Python3 problem type +- abrt-python: add id, short_id and path to problem +- abrt-python: add Problem.prefetch_data function +- abrt-python: handle reconnection gracefully - config UI: Automatic reporting from GSettings -- Resolves: #1217901 - -* Mon Apr 13 2015 Jakub Filak 2.5.1-2 -- Remove no longer needed posttrans scriptlet copying analyzer to type +- doc, polkit: Spelling/grammar fixes +- applet: fix problem info double free +- a-a-s-p-d: add new known interpreter to conf file +- config UI: enable options without config files +- config UI: read glade from a local file first +- applet: migrate Autoreporting options to GSettings +- abrt-action-list-dsos: do not decode not existing object +- spec: add AUTHENTICATED_AUTOREPORTING conditional +- abrt-auto-reporting: require rhtsupport.conf file only on RHEL +- lib: add new kernel taint flags +- spec: add a dependency on abrt-dbus to abrt-cli +- cli: do not exit with segfault if dbus fails +- applet: switch to D-Bus methods +- upload: validate and sanitize uploaded dump directories * Thu Apr 09 2015 Jakub Filak 2.5.1-1 - Translation updates - problem: use 'type' element instead of 'analyzer' - cli-status: don't return 0 if there is a problem older than limit -- cli: use the DBus methods for getting problem information - journal-oops: add an argument accepting journal directory +- journal: open journal files from directory - lib: don't expect kernel's version '2.6.*' or '3.*.*' +- cli: use the DBus methods for getting problem information +- libabrt: add wrappers TestElemeExists and GetInfo for one element - dbus: add new method to test existence of an element +- libabrt: add new function fetching full problem data over DBus +- applet: use a shared function for getting problems over DBus - vmcore: generate 'reason' file in all cases +- applet: Fix trivial indentation bug - applet: Don't show report button for unpackaged programs +- applet: fix freeing of the notify problem list - applet: get the list of problems through D-Bus service - -* Fri Mar 20 2015 Jakub Filak 2.5.0-2 -- applet: re-enable notifications of problems not-yet seen problems at start-up +- doc: D-Bus api: make desc of DeleteProblem clearer * Wed Mar 18 2015 Jakub Filak 2.5.0-1 +- applet: cast to correct type to fix a warrning +- applet: Use new problem_create_app_from_env() helper +- doc: add documentation for GetProblemData - dbus: add a new method GetProblemData - abrt_event: run save package data event even if component exists - a-a-s-container-data: add a new argument --root +- spec: add a-a-s-package-data to abrt-atomic - a-a-s-kernel-data: add --root argument - journal-oops: add an argument similar to '--merge' +- spec: let configure generate the spec file - ccpp: create the dump location from standalone hook - retrace-client: stop failing on SSL2 - spec: changes for Atomic hosts +- add stuff necessary for Project Atomic +- Python 3 fixes - ccpp: add support for multiple pkg mngrs - Python 3 compatibility -- Don't allow users to list problems "by hand" +- Revert "dbus: Allow admins to load problems without a password" +- dbus: Allow admins to load problems without a password +- abrtd: Don't allow users to list problems "by hand" +- spec: Don't allow users to list problems "by hand" - spec: abrt-python requires libreport-python to build -* Fri Feb 20 2015 Jakub Filak - 2.4.0-1 -- gracefully handle crashes in containers -- reworked abrt-applet's work-flow -- process unpackaged by default -- support collecting coredumps from systemd-coredumpctl -- search for log lines in journald more efficiently -- support sending micro-reports without the need to save coredump -- create a new package abrt-coredump-helper for Fedora Atomic - -* Fri Nov 07 2014 Jakub Filak - 2.3.0-5 +* Fri Feb 20 2015 Jakub Filak 2.4.0-1 +- spec: factor out core_pattern helper from addon-ccpp +- ccpp: standalone hook +- ccpp: save package data from hook in case of crash in container +- a-a-s-package-data: save data from artifical chroots +- spec: install containers tools +- containers: add utility collecting containers info +- ccpp: add support for containers +- spec: install the daemon's D-Bus configuration file +- daemon: add configuration enabling our name on the System bus +- daemon: get rid of own main loop +- init: set Type of abrtd.service to dbus +- applet: Use libreport's helper to find applications +- applet: Remove unused build information +- build: Fix pkg-config warning related to abrt.pc +- applet: Fix a massive leak in the app detection code +- applet: Remove left-over code from the systray icon +- applet: Use the easy way to detect empty lists +- applet: Fix a number of "problems" memory leaks +- applet: Make problem_info_t refcounted +- applet: If gnome-abrt isn't there, don't offer to report +- applet: Fix multiple notifications for the same problem +- applet: Always defer auto-reporting without a network +- applet: Don't ignore foreign problems if an admin +- applet: Rename problem variable to "pi" +- applet: Remove unused "flags" parameters +- applet: Completely ignore incomplete problems +- applet: Don't ignore repeat problems in the same app +- applet: Fix warning when crash doesn't happen in app +- applet: Remove unused functions +- applet: Remove unused flags +- applet: Rewrite notifications +- applet: Don't run full reports from the applet +- applet: Simplify "report" action +- applet: Add helper to guess .desktop for a cmdline +- applet: Get more details from the crash report +- applet: Ignore other people's problems for non-admins +- applet: Remove handling of "ignored" crashes +- applet: Remove specific persistent notifications handling +- applet: Rename applet to match gnome-abrt +- applet: Initialise libnotify on startup +- applet: Use g_new0() instead of xzalloc() +- applet: Use g_strdup_printf()/g_strdup() +- applet: Move variable inside block where it's used +- daemon: process unpackaged by default +- spec: fix abrt-applet requires +- applet: Fix memory leak in fork_exec_gui() +- applet: Detect whether gnome-abrt is available +- applet: Use GUI_EXECUTABLE macro +- autogen: move configure to the default case +- applet: Use GIO to launch gnome-abrt +- applet: Fix typo in "Oterwise" +- applet: Use symbolic icon instead of abrt's in notifications +- applet: Add some debug to new_dir_exists() +- applet: Require at least libnotify 0.7 +- applet: Fix typo in "cuurent" +- applet: Don't defer sending out uReports +- applet: Use G_SOURCE_REMOVE in timeout callback +- spec: Bump required glib2 version +- applet: Use g_bus_own_name() for single-instance +- applet: Remove status icon +- applet: Use GDBus to filter crash signals +- applet: Remove XSMP support +- build: Launch configure after autogen.sh +- make: make some python depencies optional +- configure: fix typos +- configure: check for python-sphinx and nose +- spec: add gsettings-desktop-schemas to the build requires +- core: use updated dump_fd_info() +- switch from 'analyzer' to 'type' +- spec: install abrt-dump-journal-core stuff +- init: add abrt-journal-core service +- introduce abrt-dump-journal-core +- applet: Remove the automatic crash reporting message dialog +- applet: Remove pre-glib 2.32 code +- applet: Remove pointless custom signal handling +- applet: Use GNetworkMonitor instead of NM directly +- applet: Use GSettings to check whether to send uReports +- Rewrite journalctl invocations: replace grep/tail pipeline with journalctl builtins. +- Don't slurp unbounded amounts of data when invoking journalctl. Fixes #887. +- console-notifications: add timeout +- cli-status: use will_python_exception +- ccpp-hook: move utility functions to hooklib +- ccpp-hook: move /proc/[pid]/ utils to libreport +- abrt-journal: add functions for reading/saving journald state +- Do not use 'bool' in OPT_BOOL() macro : it expects 'int' +- daemon: Own a D-Bus name +- zanata: add gettext mappings +- auto-reporting: add options to specify auth type +- translations: move from transifex to zanata +- spec: add missing augeas dependency +- Only analyze vulnerabilities when coredump present +- abrt-install-ccpp-hook check configuration +- UUID from core backtrace if coredump is missing +- Create core backtrace in unwind hook +- abrt-hook-ccpp: minor refactoring +- vmcore: remove original vmcore file in the last step +- vmcore: catch IOErrors and OSErrors +- python: load the configuration from correct file +- Remove garbage from ccpp_event.conf +- spec: update the required gdb version +- gdb: make gdb aware of the abrt's debuginfo dir +- Revert "gdb: disable loading of auto-loaded files" +- spec: update the URL - koops: improve 'reason' text for page faults -- do not detect Firefox crashes -- make ABRT queiter -- update Package URL - -* Tue Oct 14 2014 Jakub Filak - 2.3.0-4 -- oops: get rid of invalid characters when dumping from journald - -* Mon Oct 13 2014 Jakub Filak - 2.3.0-3 -- applet: show package instead of duphash +- sos: use all valuable plugins +- a-a-g-machine-id: do not print any error from the event handler +- a-a-g-machine-id: omit trailing new-line for one-liners only +- a-a-g-machine-id: suppress its failures in abrt_event.conf +- a-a-g-machine-id: add systemd's machine id +- applet: ensure writable dump directory before reporting +- make ABRT quieter +- journal-oops: use the length result of sd_journal_get_data() - console-notifications: skip non-interactive shells - -* Thu Oct 09 2014 Jakub Filak - 2.3.0-2 +- applet: don't show duphash instead of component +- ureport: attach contact email if configured - console-notifications: use return instead of exit - -* Wed Oct 08 2014 Jakub Filak - 2.3.0-1 -- applet: confirm ignoring of notifications -- cli: batch reporting in abrt-cli -- cli: add option remove crash dirs after reporting - -* Thu Oct 02 2014 Jakub Filak - 2.2.2-9 -- disable addon-vmcore on AArch64 - -* Wed Oct 01 2014 Jakub Filak - 2.2.2-8 -- dbus: fixed abrt-dbus memory leaks -- plugins: add abrt-action-generate-machine-id -- retrace-client: humanize sizes -- cli: robustize abrt-console-notification.sh -- cli: make consistent commands in abrt-cli -- Resolves: #1141485 - -* Thu Sep 11 2014 Jakub Filak - 2.2.2-7 -- remove dependency on crash - -* Mon Sep 01 2014 Jakub Filak - 2.2.2-6 -- gettext: fix the initialization in python scripts -- oops: add man page.patch -- revert: support handling crashes in lxc containers -- oops: fix a use after free bug uncoverd by coverity -- reduced the amount of log messages - -* Fri Aug 15 2014 Fedora Release Engineering - 2.2.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Wed Jul 16 2014 Jakub Filak 2.2.2-4 -- dump kernel oopses from systemd-journal -- support SyntaxError Python exceptions - -* Wed Jul 16 2014 Jakub Filak 2.2.2-3 -- don't use native unwinder on arm - -* Mon Jul 14 2014 Jakub Filak 2.2.2-2 -- use native unwinder for generating 'core_backtrace' - -* Tue Jul 08 2014 Jakub Filak 2.2.2-1 -- applet: chown each notified problem before reporting it -- koops: don't analyze MCEs like standard oopses -- koops: don't drop not-reportable oopses by default -- abrt_event: fix post-create reporter-uploader examples -- local duplicates must have matching executables -- Resolves: #1105316 - -* Tue Jun 10 2014 Jakub Filak - 2.2.1-6 -- configui: do not use deprecated gtk3 API -- gdb: disable auto-loaded files -- Resolves: #1105940 - -* Sat Jun 07 2014 Fedora Release Engineering - 2.2.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Tue May 27 2014 Kalev Lember - 2.2.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 - -* Tue May 06 2014 Jakub Filak 2.2.1-3 -- dbus: Fix invalid dbus policy file - -* Tue May 06 2014 Jakub Filak 2.2.1-2 -- dbus: Fix desktop centric polkit policy file - -* Tue Apr 22 2014 Jakub Filak 2.2.1-1 -- stop using deprecated json-c functions -- vmcore: start the service after kdump service -- do not clear LANG env variable -- localization: fix gettext - Translation updates -- simplify Analyze C/C++ event configuration -- Support handling crashes in lxc containers -- koops: add an option controlling MCE detection -- cli: list displays all problems -- Fix a spelling error in a configuration GUI tooltip. -- spec: python3 corrections -- Fix new lines in po files - -* Wed Mar 05 2014 Jakub Filak 2.2.0-1 -- Translation updates -- limit ourselves to *.conf in /etc/abrt -- applet: run Autoreporting event in NONINTERACTIVE mode -- ureport: add user to CC List of Bugzilla bug -- python: build python api for py3 -- koops: never search for MCE strings in dmesg -- spec: remove stray space from %%description -- spec: add missing requires for python api -- spec: add dependency on abrt-python - -* Mon Feb 10 2014 Jakub Filak - 2.1.12-2 -- python: install modules to sitearch directory -- upload-watch: remove busy-wait for SIGUSR1 - -* Thu Jan 30 2014 Jakub Filak 2.1.12-1 -- don't break the event run by failures of abrt-action-notify -- harvest-vmcore: properly handle inaccessible dir error -- spec: abrt-cli requires a pkg providing workflows -- applet: do not say the report is anonymous when ureport auth is enabled -- abrtd.service: Don't order after syslog.target -- vmcore: properly configure Augeas -- applet: don't notify missing ignored_problems file -- fix a double free error in abrt-applet -- configui: show 'Close' button in the dialog -- configure: remove all -Werror from O0CFLAGS -- fix handling of Machine Check Exceptions. - -* Wed Jan 08 2014 Jakub Filak 2.1.11-1 -- Update translations -- harvest_vmcore: replace regexp config parsing with augeas -- introduce D-Bus Configuration Service -- mark koopses with unsupporeted HW as not-reportable -- bodhi: use the right exit codes -- abrt-handle-event: don't use already freed memory -- introduce abrt-auto-reporting utility -- abrt-action-notify: fix couple of flaws -- Use satyr to compute koops duphash -- koops: tweak koops parser for s390 Call Traces -- configui: do not use deprecated gtk3 API - -* Wed Dec 11 2013 Jakub Filak 2.1.10-1 -- abrt-cli: display URL to reports in the details -- abrt-cli list: list all problems by default -- Do not copy Makefiles to documentation. -- harvest_vmcore: Fix absolute path handling -- Speed up journalctl --system support detection -- spec: add abrt's augeas module -- add augeas module for abrt configuration files -- spec: rename CCpp.conf -- rename CCpp.conf man to abrt-CCpp.conf -- spec: move vmcore addon's configuration to a new dir -- vmcore: reorganize configuration -- make: install abrt-harvest-vmcore into share conf.d -- spec: install abrt-harvest-vmcore.conf to share conf.d -- switch to libreport workflows in all report-cli events -- abrtd: use warning level for "Recreating deleted ..." message -- abrt-python: add missing arguments to Crash handler -- spec: adapt recent changes related to abrt-action-notify -- move the notify event from dbus_event.conf to abrt_event.conf -- run the autoreporting event from abrt-action-notify -- spec: install conf to /usr/share/abrt/conf.d -- Load conf from /usr/share/abrt/conf.d and /etc/abrt -- abrt-action-install-debuginfo: fix --exact handling. Fixes rhbz1027786 -- Use bugzilla_formatdup.conf for detected duplicates in python too. Fixes rhbz#875312. -- applet: properly handle incomplete problems -- DBus Problems API: update documentation -- spec: add abrt-action-notify -- factor out the D-Bus notifications into a python script -- adapt post_create event to the recent changes in reporter-ureport -- spec: add Requires: systemd-python for python addon -- shorten CCpp reason message -- abrt-dump-oops: if backtrace is not seen, file an one-line oops. Fixes rhbz#812537 -- Update translations -- Add several manpages -- Resolves: #812204, #1005762 - -* Sat Oct 26 2013 Jakub Filak 2.1.9-1 -- pyhook: add logging workaround for rhbz#1023041 -- spec: add systemd-python to BuildRequires -- start abrt-handle-event in non-interactive mode -- Log to journal instead of syslog -- Create manpage for xorg.conf -- Configuration UI: instantly apply changes -- applet: reload user configuration before accessing its values -- switch logging from syslog to systemd in f20 - rhbz#1010648 -- make notification messages more clear -- Use log_ family instead of VERBn log calls -- spec: unversioned doc directories in newer fedoras -- don't consider crashes posted to ABRT server as reported -- check return values of fcntl() and setsid() -- remove a dead code uncovered by coverity -- spec: fix file access rights for type and core_bactrace -- spec: move examples to abrt-python-doc package -- install problem examples to python dir -- spec: added the versioned abrt-libs requires to silence rpmdiff -- a-dump-oops: Add new WARNING pattern -- a-a-save-kernel-data: support more kernel flavours -- a-h-event: always compare results of realpath() - -* Fri Oct 04 2013 Jakub Filak 2.1.8-1 -- Disassemble only instruction rage memory if backtrace is too big -- Include floating-point registers in the backtrace -- spec: make addon-ccpp dependent on libreport-python -- polkit: replace deprecated functions with their subtitues -- retrace-client: query CCpp exploitable information from Retrace server; closes #703 -- GUI config: add support for Private ticket option -- a-a-ureport: handle os errors gracefully rhbz#998428 rhbz#998197 -- add prefix from configure to the path of debuginfo installer - closes #701 -- spec: added deps on abrt-python - closes rhbz#1008182 -- spec: remove abrt-dedup-client; closes #702 -- remove abrt-dedup-client; related to #702 -- abrt-*-client: simplify formatting of locale-related headers -- Resolves: #812204 - -* Wed Sep 11 2013 Jakub Filak 2.1.7-1 -- fix debuginfo installer expecting user input from a pipe - closes #696 -- add environment variable whitelist to debuginfo install wrapper - closes #692 -- add repo_pattern argument as a custom repository filter - closes #688 -- abrt-cli list: replace "@" prefix by "id " prefix -- fix a crash in 'abrt-cli info' when short id isn't found -- Use common string-to-sha1_hash functions. #694 -- doc: update OpenGPGCheck in a-a-save-package-data rhbz#997922 -- abrt-cli report: accept sha1 hashes of directory names. #693 -- abrt-dump-oops: emit a message if throttling for a significant period of time -- abrt-gdb-exploitable: print current instruction -- spec: posttrans scriptlet regenerating core_backtraces -- abrt-handle-event: add check for missing crash thread -- provide tmpfiles.d configuration -- abrt-cli list: use sha1 hash as short ids instead of @N thing. rhbz#906733 -- vmcore: fail gracefully if dump_dir is not accessible -- spec: vmcore: require kexec-tools -- vmcore: use re.MULTILINE instead of numerical value -- vmcore: don't fail if /etc/kdump.conf is not readable -- abrt-cli info: add "-s SIZE" option. closes #689 -- fix noninteractive mode in debuginfo installer - rhbz#737066 -- fixed the gpg keys loading - closes #686 -- Fix type of OPT_BOOL's referenced flag variable - it must be int, not bool! -- adds a kdump.conf parser to get the correct dump dir location, closes #640 -- xorg_event.conf: use abrt-action-list-dsos to create dso_list -- abrt-action-list-dsos: extend it to be able to parse Xorg backtrace. -- don't require debuginfo for vmcore analysis rhbz#768389 -- specfile: make addon-pstoreoops obsolete addon-uefioops -- abrt-dump-oops: add -t option which slows down problem creation. rhbz#902398. -- rename uefioops to pstoreoops rhbz#949721 -- spec: create type element for problem dirs where it doesn't exist - rhbz#958968 -- introduce abrt-upload-watch -- fix ccpp hook to create the type element - closes #682 -- specfile: use systemd-rpm macros. rhbz#850019 -- abrt-harvest-vmcore: notify new path - #657 -- abrt-dump-oops: remove redundant g_list_length() call, make messages clearer -- updated translation - rhbz#860555 -- updated transifex url -- GUI config: add Close/Defaults button -- GUI config: hide option descriptions in tool tips -- GUI config: add Silent shortened reporting support -- applet: silent shortened reporting -- applet: less misleading label for Ignore button -- abrt-handle-upload: switch from shell to python; send socket notification. #657 -- spec: add build requires for XSMP depencies -- applet: update seen list when X Session dies -- improved the error messages in abrt-server - closes #679 -- fix typo in abrt-config-widget.ui -- spec: add new packages abrt-gui-libs and abrt-gui-devel -- delete desktop file for system-config-abrt -- expose abrt configuration GUI in public API -- rewrite abrt-harvest-uefioops to python - closes #678 -- spec: abrt-python is no longer noarch - related #677 -- created python binding for notify_new_path - closes #677 -- spec: install applet's desktop file to system dir -- applet: configure notification source -- rewrite shell script for moving vmcores into python closes #676 -- abrtd: ensure that the dump location directory exists -- a-a-ureport: generate core_backtrace only for CCpp problems -- do not store potentially big data in /tmp -- abrt-dbus: send new problem notify signal to socket -- abrtd: remove "post-create" machinery. Related to #657 -- Avoid leaving stale rpmdb locks behind (rhbz#918184) -- abrtd: improve parsing of pidfile in create_pidfile() -- abrt-dump-{oops,xorg}: send new problem notify signal to socket -- abrtd: disable inotify watch on DUMP_LOC -- abrt-hook-ccpp: send "POST /creation_notification" after creating problem dir -- Stop dying in check_free_space(); rename it to low_free_space() -- abrt-server: make create_problem_dir() run "post-create" -- abrt-handle-event: create DUMP_LOC/post-create.lock when running "post-create" -- abrt-server: add support for "POST /creation_notification" -- abrt-handle-event: free more of allocated data -- Resolves: #994009 - -* Tue Aug 06 2013 Jakub Filak 2.1.6-3 -- try to generate core_backtrace only for CCpp problems - -* Mon Jul 29 2013 Jakub Filak 2.1.6-2 -- disable gcc unused-typedef warning for GLib -- use right dependencies for RHEL - -* Fri Jul 26 2013 Jakub Filak 2.1.6-1 -- replace functions deprecated in Gtk-3.10 with their substitutes -- integrate with satyr, drop btparser -- use absolute path in python shebang rhzb#987010 -- abrt-action-save-package-data: properly close rpm database. Closes #674. -- abrt-action-save-package-data: fix handling of ProcessUnpackaged on scripts -- abrt-action-save-package-data manpage: typo fix -- change /var/spool/abrt/ to /var/tmp/abrt in doc rhbz#912750 -- Fix RPMdiff warnings about abrtd and abrt-action-install-debuginfo-to-abrt-cache -- specfile: add dependency on abrt-libs to abrt-addon-uefioops -- stop using the hardcoded event list, use workflows instead rhbz#866027 -- retrace-client: build correct release for Fedora Rawhide -- spec: drop unnecessary Obsoletes and Provides -- correct FSF address in python exception hook -- add missing manual pages for binaries and scripts -- fix rpmlint issues in the spec file -- move event option XML files to /usr/share/libreport/ -- abrt-hook-ccpp: always fall back to creating user core. -- dbus: add GetForeignProblems method -- the system tray icon opens recently detected problem -- add gdb python plugin which analyzes coredump for vulnerability -- applet: stop saving configuration at exit -- introduce system-config-abrt -- abrt-cli status: make the output more natural -- Fix wrong path in shell include -- abrt-dump-xorg: save "type=xorg" along with "analyzer=xorg" -- Update python hook to use fixed socket interface -- abrt-server: updates/fixes for future rasdaemon needs - -* Tue Jul 16 2013 Jakub Filak 2.1.5-2 -- fix reporting from Rawhide -- Resolves: #958933 - -* Fri Jun 14 2013 Jakub Filak 2.1.5-1 -- abrt-retrace-client requires tar closes #635 -- abrt-tui requires abrt closes #633 -- a-d-oops: obtain kernel version from the oops -- a-a-p-ccpp-analysis: import all used attributes -- vmcore: provide all problem elements necessary for the reporting -- a-d-oops: add 'update' command line argument -- a-a-g-core-backtrace: don't crash if kernel file doesn't exist -- a-a-a-vmcore: save kernel version in 'kernel' file -- abrt-cli: make status help message more precise -- abrt-cli status: don't include reported problems into count -- abrt-cli list: implement --since and --until -- abrt-python: open dirs read-only if possible -- dbus: ChownProblemDir method really changes the owner -- python: disable events in collision with anaconda -- abrt-python requires pygobject2 -- systemd units: start services only if it make sense -- abrt-harvest-uefioops.in: test for abrtd after testing for pstore, not before -- make abrt-uefioops.service conditional on /sys/fs/pstore being populated -- dbus: fix SetElement failing when shrinking an item -- spec: fix unowned directories -- abrt-python: whole python API path in POTFILES.skip -- abrt-python: fix dbus compatibility on RHEL6 -- abrt-python: check if gid equals current users gid -- abrt-python: fix tests compatibility with python 2.6 -- abrt-python: pass DD_OPEN_READONLY only if available -- abrt-python: fix deprecation warnings -- console notification shouldn't ask confirmation - closes #652 -- Short BT deduplication false positives workaround -- Only problems of same type can be duplicates -- abrt-python: fix bug in problem.get -- abrt-python: pep8 cleanup -- koops parse: support frame prefix -- don't show non critical errors in console notification - -* Mon May 06 2013 Jakub Filak 2.1.4-3 -- don't show non critical errors in console notification -- use last_occurrence with --since - -* Fri May 03 2013 Jakub Filak 2.1.4-2 -- start abrtd.service after livecd -- udpate translation -- add addon-uefioops -- Resolves: #928753 - -* Tue Apr 30 2013 Jakub Filak 2.1.4-1 -- build abrtd and setuided executables with full relro rhbz#812284 -- added a console notification script to profile.d closes #641 -- return the right exit code for user cancellation -- add more examples to Problem API doc -- updated translation Related: #951416 -- Replace "THANKYOU" with EXIT_STOP_EVENT_RUN exit code (70) -- abrt-action-ureport: rewrite in python, improve messages -- abrt-cli: added 'status' command -- abrt-cli: make "report -v[vv]" export correct $ABRT_VERBOSE value -- bodhi, retrace: support /etc/os-release -- abrt-action-generate-core-backtrace: be a bit more verbose -- abrt-dump-oops: add "Machine Check Exception" to the list of watched strings rhbz#812537 -- abrt-action-install-debuginfo: do not assume os.execvp never returns -- abrtd: mark unprocessed dump directories as not-reportable -- abrtd: update last occurrence dump dir file -- spec: remove the commented macros rhbz#864851 -- spec: added the versioned abrt-libs requires to silence rpmdiff rhbz#881123 -- spec: create a new subpackage for the console notification #641 -- spec: add deps. required for reporting to abrt-cli pkg -- spec: inc required version of libreport - -* Mon Apr 08 2013 Jakub Filak 2.1.3-2 -- Require correct version of libreport -- Add dependecies required for reporting to abrt-cli package - -* Wed Mar 27 2013 Jakub Filak 2.1.3-1 -- record runlevel -- Integration with satyr -- dbus: check correct errno after dump_dir_is_accessible_by_uid() -- require libreport workflow package acc. to OS type -- remove the abrt-gui closes #629 -- retrace-client: do not allow space in os_release_id; closes #625 -- Remove all smolt-related files and code bits -- abrtd: recreate Dump Location directory if it is delete - -* Mon Mar 25 2013 Jakub Filak 2.1.2-4 -- Check if restorecon cmd exists and run it only if it does -- Resolves: #926934 - -* Fri Mar 22 2013 Jakub Filak 2.1.2-3 -- Fix problems with spaces in retrace-client - -* Fri Mar 22 2013 Jakub Filak 2.1.2-2 -- Require correct version of libreport -- Add a patch for abrtd which ensures that the dump location always exists - -* Tue Mar 19 2013 Jakub Filak 2.1.2-1 -- Improve log messages -- Update translation -- Introduce helpers for management of list of ignored problems -- applet: show a confirmation notify bubble for reported problems in ShortenedReporting mode -- applet: mark problems as ignored and don't notify ignored problems -- applet: remove confusing "Show" button -- applet: pass problem's id to the gui app -- abrt-ccpp: try to read hs_err.log from crash's CWD -- abrt-action-perform-ccpp-analysis: Complain if analyze_RetraceServer can't run. Closes 619 -- abrt-gui: change URL to point to most recent doc -- add abrt-action-analyze-ccpp-local to ccpp-addon related to rhbz#759443 -- analyze-ccpp don't suid to abrt when run as root, related rhbz#759443 -- abrtd: prohibit DumpLocation == WatchCrashdumpArchiveDir. Closes rhbz#854668 -- abrtd: don't blame interpreter, blame the running script #609 -- a-a-ureport: don't fail on missing counter file -- a-a-ureport: allow to send ureport more than once -- dbus doc: install abrt-dbus documentation files to the correct places -- dbus doc: extend the documentation of DBus API -- dbus doc: make xml interface parseable by qtdbusxml2cpp -- dbus: add basics to a new problem -- abrt-harvest-vmcore: don't copy dir from var/spool if copy already exists -- fix path in the collect_xsession_errors event -- retrace-client: print dots instead of repeated status message -- move abrt.pth to arch specific location rhbz#912540 -- Make forking code paths more robust. -- add more logging to catch "stuck core-backtrace" problem; reduce gdb looping -- Resolves: #879160, #854668, #885044, #903005, #905412, #909968, #912540 - -* Tue Mar 05 2013 Jakub Filak 2.1.1-3 -- disable shortened and auto reporting in RHEL -- Resolves: #918040, #918041 - -* Tue Mar 05 2013 Jakub Filak 2.1.1-2 -- remove ureport events from the reporting workflow in RHEL - -* Fri Feb 08 2013 Jakub Filak 2.1.1-1 -- add SETGID bit to abrt-action-install-debuginfo-to-abrt-cache -- add abrt-desktop depency on libreport-fedora -- abrt-dump-{oops,xorg}: limit amount of created dirs, add cooldown sleep if exceeded -- abrt-watch-log: handle a case when child doesn't process its input -- abrt-watch-log: fix a bug in mmap error check -- abrt-action-analyze-xorg: fix the case with DIR != "." -- Resolves: #908256 - -* Mon Feb 04 2013 Jakub Filak 2.1.0-1 -- pkg-config: export defaultdumplocation variable -- configure: set default dump location to /var/tmp/abrt -- abrtd: sanitize mode and ovner of all elements -- updated translation -- abrtd-inotify-flood test: expend it to check for another inotify-related bug -- gnome-abrt is default GUI -- applet: on requrest open gnome-abrt instead of abrt-gui -- Make it so that g_io_channel_read_chars(channel_inotify) does not buffer data. -- multilib fixes -- daemon: unify accessibility check before delete with dbus -- dbus: move dir accessibility check from abrt to libreport -- dbus: user dd_chown instead of own impl. -- allow default dump directory to be configured through cmd line args -- introduce abrt-python -- reporter-bz: post a comment to dup bug, if we found a dup. version 2. -- replace left over magic dd modes by macro -- synchronize default dump dir mode with libreport -- replace all occurrences of hardcoded dump location by a variable -- harvest-vmcore: read dump dir path from configuration -- use lchown when chowning files over dbus -- use lchown when chowning newly created problem directory -- verify-that-report-edits test: fix to account for new CLI interface -- koops: add all x86 TRAP prefixes to list of suspicious strings -- koops: put all suspicious strings to global variable -- applet: extend comment. No code changes -- applet: introduce shortened reporting -- abrt-applet: handle SIGTERM and perform nice termination -- abrt-applet: update the seen list on every possible action -- applet: don't notify outdated new problems -- Add and use "report-cli" event instead of removed "report-cli -r" option -- fixed the relro flags rhbz#812284 -- applet: unref unused GIOChannel -- Resolves: #892230, #895742 - -* Thu Dec 20 2012 Jiri Moskovcak 2.0.20-1 -- New version 2.0.20 -- Fix typo: usefull->useful -- koops: generate core backtrace if missing -- udpated po files -- Cosmetic fixes in abrtd-inotify-flood test -- Hook up abrtd-inotify-flood to test infrastructure -- Add a testcase for inotify flood -- replace 'Start Autoreport' btn by a popup dialog -- dbus: NewProblem returns full path as problem_id -- abrt-action-analyze-xorg: fix /usr/include/paths.h -> paths.h -- abrtd: set inotify fd to non-blocking mode; ignore 0-sized inotify reads. Closes rhbz#873815 -- s/ABRT dump/problem directory/g -- abrt-applet: don't leak component name -- abrt-applet: alerts only not reported problems -- build system: Remove leftover of abrt-action-analyze-xorg shell script -- Rewrite abrt-action-analyze-xorg in C (partially) -- rework abrt-gui>Help>'Report problem with ABRT' -- abrt-action-analyze-oops: fix help text - we have no -s option -- Help text fix - using "problem directory" consistently -- abrt-dump-oops: add list of tainted modules to NOT_REPORTABLE string. Closes trac#821 -- a-a-p-c-a: use ask_yes_no_yesforever() fn from reportclient -- abrt-dump-oops: save /proc/modules contents. Partially closes trac#821 -- add ureporter wrapper sending ureport only once per problem dir -- introduce Desktop Session Autoreporting -- add Autoreporting configuration options -- abrt-action-analyze-xorg: robustify 'test "a" = "b"' against bugs -- Collect ~/.xsession_errors from its new path, if it is there. Closes trac#791 -- reflect recent libreport API changes .trac#822 -- Indentation fix. No code changes. -- minor fix to previous commit realted to .trac#541 -- don't use gtk_main* when using gtk_application .trac#890 -- minor fix to quit button -- Make "Open problem data" open the expert mode GUI -- Teach kernel oops hash to ignore "" / "" prefixes. Closes rhbz#875852 -- introduce DeleteElement D-Bus method -- introduce SetElement D-Bus method -- allow only one instance of gui trac#541 -- runtests/bugzilla-comment-format: fix false positive AGAIN -- update translations -- a-a-p-c-a: use correct name in gettext initialization -- Fix build system so that make rpm works again -- runtests/bugzilla-comment-format: fix false positive -- Improve xorg post-create. closes trac#838 -- Update po files -- fix problem occurrence counter updating algorithm -- abrt-dbus: immediately return an error if not-existing problem is requested -- bugzilla-comment-format: new test -- a-a-p-c-a: use event python API instead of abrt-handle-event -- doc: add dbus problems service specification - -* Mon Nov 26 2012 Jakub Filak 2.0.19-2 -- update translations -- Resolves: #880201 - -* Wed Nov 14 2012 Jakub Filak 2.0.19-1 -- call g_type_init() only in GLib version < 2.35 -- plugins/*_event.conf: use reporter-bz -F FMTFILE as appropriate -- repeat unchaged retrace status message only in verbose mode -- check the correct return value of yesforever answer -- abrt-handle-event: forward event process requests to parent -- don't leak optional retrace path and kernel tainted string -- enhance koops tainted flag parser -- Use "comment" element instead of "description" -- Resolves: #873488 - -* Thu Nov 01 2012 Jakub Filak 2.0.18-1 -- bugzilla-dupe-search: fix os_release to contain the same OS version as bug 755535 -- Do not stop reporting when GConf entry is not found. Closes rhbz#869833 -- Fix false positive caused by English language fix -- pyhook: import inspect lazily -- Resolves: #869833 - -* Wed Oct 24 2012 Jakub Filak 2.0.17-2 -- remove ABRT1.0-to-ABRT2.0 upgrade script from spec file - -* Wed Oct 24 2012 Jakub Filak 2.0.17-1 -- provide a problem item containing versions of binaries listed in Xorg backtrace - Adresses #867694 comment 1 -- import rpm lazily -- Resolves: #864324 - -* Wed Oct 17 2012 Jakub Filak 2.0.16-1 -- xorg_event: make post-create save dmesg, drop problems w/ binary modules - Partially addresses: #856790 -- collect_xsession_errors should not fail if !xsession-errors - Resolves: #866698 - -* Thu Oct 11 2012 Jakub Filak 2.0.15-1 -- add collect_* event to reporting chains for CCpp/Python/Kernel -- core-backtrace: make sure kernel version does not contain spaces -- core-backtrace: also include '?' flag for kerneloops -- don't check EXECUTABLE if it isn't present in list -- retrace-client: check whether all included files are regular -- abrt_exception_handler.py: save 'environ' element -- add Makefile target release-fix -- Make it possible for developer to disable crash processing for specific apps. Closes rhbz#848786 -- s/Dump directory/Problem directory/ -- Resolves: #864014, #864331, #848786 - -* Sun Oct 07 2012 Jakub Filak 2.0.14-2 -- added forgotten Requires - -* Fri Oct 05 2012 Jakub Filak 2.0.14-1 -- abrt-dump-oops: save /sys/kernel/debug/suspend_stats. Closes rhbz#787749 -- abrt-hook-ccpp: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 -- abrt-dump-oops: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 -- abrt-action-analyze-oops: fail if we end up hashing "" (empty string). Closes rhbz#862013 -- retrace-client: respect chrooted os_release in pkgcheck -- Added oops_recursive_locking1.right to Makefile.am -- fix koops-parser.at, remove bastardized copy of oops_recursive_locking1.test -- add new oops example (currently fails, the fix is coming up) -- fix oops jiffies time stamp counter removal code -- trivia: s/dump/problem directory; fix false positive in oops-with-jiffies.right -- testsuite: added f18 kickstart -- open files for appned not for write rhbz#854266 -- added more info about locking - rewrote with vda's comments rhbz#859724 -- ccpp_event.conf: ignore crashes with nonzero TracerPid. Closes rhbz#812350 -- show more info when abrtd can't acquire lock on pid, related to rhbz#859724 -- abrt-hook-ccpp: save "proc_pid_status" element -- use FILENAME_ABRT_VERSION instead of string literal -- Fix pyhook test to reflect changes made in write_dump -- trac#333: Add code generating dso_list to the python hook -- spec: tui should require libreport-cli rhbz#859770 -- trac#682: emit Crash DBus signal on org.freedesktop.problems bus -- spec: added deps on elfutils rhbz#859674 -- Resolves: #859674, #859770, #859724, #812350, #854266, #862013, #747870, #787749 - -* Fri Sep 21 2012 Jiri Moskovcak 2.0.13-1 -- - -* Tue Aug 21 2012 Jakub Filak 2.0.12-1 -- move abrtd.pid to /var/run/abrt/abrtd.pid -- abrt-harvest-vmcore: add CopyVMcore config option to copy vmcores. Closes 448, rhbz#811733, rhbz#844679 -- update po files rhzb#800784 -- applet: fix a SEGV caused by notify_init() not being called -- minor fix to pkg-config file -- ignore results of setregid() and setreuid() after glibc update -- hopefully fixed ugly applet icon rhbz#797078 -- add update of abrt server database to event chains -- Resolves: #761431, #811733, #844679, #797078 - -* Fri Aug 10 2012 Jakub Filak 2.0.11-2 -- fix abrt-dbus crash if no element is found in GetInfo() -- set sending-sensitive-data option to 'yes' for analyze_RetraceServer event - -* Thu Aug 02 2012 Jiri Moskovcak 2.0.11-1 -- new upstream release -- Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 - -* Tue May 22 2012 Jiri Moskovcak 2.0.10-4 -- abrt-desktop should require abrt-retrace-client -- Resolves: #823812 - -* Thu May 10 2012 Jiri Moskovcak 2.0.10-3 -- enable plugins unconditionally rhbz#819113 - -* Wed Apr 18 2012 Jiri Moskovcak -- fixed freeze in crashing python apps rhbz#808562 -- Resolves: #808562 - -* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-2 -- minor rhel7 build fixes - -* Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 -- new upstream release -- fixed problem with empty problem directory rhzb#808131 -- fixed exception in a-a-a-core when eu-unstrip output is broken -- Resolves: #808131, #804309 - -* Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 -- fixed problems with rhel gpg keys rhbz#800419 - -* Thu Feb 02 2012 Jiri Moskovcak - 2.0.7-6 -- abrt-desktop shouldn't require bodhi on rhel (2nd try) - -* Wed Feb 01 2012 Jiri Moskovcak - 2.0.7-5 -- abrt-desktop shouldn't require bodhi on rhel - -* Thu Jan 12 2012 Fedora Release Engineering - 2.0.7-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Jan 03 2012 Jiri Moskovcak 2.0.7-3 -- build fixes - -* Thu Dec 08 2011 Jiri Moskovcak 2.0.7-2 -- added man page -- fixed weird number formatting - -* Wed Dec 07 2011 Jiri Moskovcak 2.0.7-1 -- new version -- disabled kerneloops.org -- abrt-ccpp hook fixes -- catch indentation errors in python rhbz#578969 -- fixed make check -- fixed retrace-client to work with rawhide -- require abrtd service in other services rhbz#752014 -- fixed problems with dupes rhbz#701717 -- keep abrt services enabled when updating F15->F16 -- Resolves: 752014 749891 749603 744887 730422 665210 639068 625445 701717 752014 578969 732876 757683 753183 756146 749100 - -* Fri Nov 04 2011 Jiri Moskovcak 2.0.6-1 -- new version -- Resolves: #701171 #712508 #726033 #728194 #728314 #730107 #733389 #738602 -- Resolves: #741242 #749365 #700252 #734298 #736016 #738324 #748457 #692274 -- Resolves: #711986 #723219 #749891 #712602 #744887 #749603 #625445 #665210 -- Resolves: #737991 #639068 #578969 #636000 #631856 - -* Fri Oct 07 2011 Nikola Pajkovsky - 2.0.4.981-3 -- don't file kernel bugs if "tainted: B" is set. -- don't file bugs about BIOS bugs. -- incorrect TAINTED description in bugs. -- Resoves: #718097 #708534 724838 - -* Mon Oct 3 2011 Jiri Moskovcak - 2.0.4-981-2 -- added abrt-retrace-client as a dependency - -* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.981-1 -- updated translation -- don't allow to skip the analyze step -- don't send ~ backups -- added hint to report only in English -- renamed abrt-action-kerneloops -> reporter-kerneloops -- explain option bugtracker and logger -- gui added padding to main window -- better message when gdb time outs -- added support for catching vmcores -- added version to Logger output -- [RFE] abrt should have an easy way to include smolt-profile -- Resolves: #694828 #694833 #704958 #735071 #731189 #739182 #704452 #734037 #606123 #631822 - -* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 -- minor spec file fix - -* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-4 -- fixed sigsegv in a-a-save-package-data rhbz#737961 -- fixed privs for /var/run/abrt rhbz#725974 -- fixed segv in free space check -- Resolves: #737961 #725974 - -* Tue Aug 30 2011 Jiri Moskovcak - 2.0.4-3 -- fixed abrt1-abrt2 update - -* Fri Aug 19 2011 Jiri Moskovcak - 2.0.4-2 -- enable bugzilla for kerneloops rhbz#725970 -- Resolves: #725970 - -* Thu Jul 21 2011 Jiri Moskovcak - 2.0.4-1 -- new upstream version -- resolves wrong provs/obsolete rhbz#723376 -- split main UI into two panes -- debuginfo-install script asks before downloading -- Resolves: #723376 - -* Mon Jun 20 2011 Jiri Moskovcak - 2.0.3-1 -- new upstream release - -* Fri May 20 2011 Jiri Moskovcak - 2.0.2-6 -- make abrt-ccpp and abrt-oops start on boot - -* Fri May 13 2011 Karel Klíč - 2.0.2-5 -- Do not force service startup in %%posttrans, as it breaks live media - creation (rhbz#704415) - -* Sun May 08 2011 Jiri Moskovcak 2.0.2-4 -- fixed prgname, fixes problem where Gnome3 shows lowres icons instead - nice highres ones - -* Fri May 06 2011 Christopher Aillon - 2.0.2-3 -- Update icon cache scriptlet per packaging guidelines - -* Fri May 06 2011 Jiri Moskovcak 2.0.2-2 -- flush messages in retrace client - -* Thu May 05 2011 Jiri Moskovcak 2.0.2-1 -- updated translation -- new icons (thanks to Lapo Calamandrei) -- changed address of retrace01 to retrace -- fixed problem with not trusted ssl certificate #695977 -- #692713 Dialogue Box Buttons Wrong Way Around -- #695452 abrt crashing when trying to generate backtrace -- #698458 RFE: report separators between reports in abrt.log -- #699098 999 futile attempts to delete excess debuginfo -- #691881 GUI doesn't sort by last occurrence by default, and doesn't remember that sort order if you set it and restart the app -- #698418 Can't access '/var/spool/abrt/ccpp-2011-04-18-11:53:22-2661': Permission denied -- #698934 abrt-applet segfault on abrtd restart -- #695450 Retrace client - show meaningful message on failure -- #616407 RFE: Change abrt to catch TRAP signal crashes -- #584352 running service abrtd a non-root user doesn't show error -- retrace client: fail on servers with problematic SSL certificates (kklic@redhat.com) -- retrace-client: Load system-wide certificates. Move NSS init/shutdown to main, as it shouldn't be run multiple times. (kklic@redhat.com) -- abrt-cli: update manpage. Closes #243 (dvlasenk@redhat.com) -- move abrt-handle-crashdump to abrt-cli package. No code changes (dvlasenk@redhat.com) -- add abrt-action-print manpage. Closes #238 (dvlasenk@redhat.com) -- add abrt-action-trim-files manpage. Closes #241 (dvlasenk@redhat.com) -- added abrt-action-generate-backtrace manpage (dvlasenk@redhat.com) -- add abrt-action-analyze-backtrace manpage. Closes #227 (dvlasenk@redhat.com) -- retrace server: do not create zombie workers (mtoman@redhat.com) -- btparser: Remove top frame with address 0x0000 (jump to NULL) during normalization to avoid incorrect backtrace ratings (rhbz#639049) (kklic@redhat.com) -- abrt-gui: better list refreshing. Closes #251 (dvlasenk@redhat.com) -- fix for spurious "Lock file 'DIR/.lock' is locked by process PID" message (dvlasenk@redhat.com) -- Asciidoc manpage support; abrt-action-mailx manpage (kklic@redhat.com) -- list-dsos: don't list the same library multiple times (jmoskovc@redhat.com) -- call abrt-action-trim-files from abrt-action-install-debuginfo (dvlasenk@redhat.com) -- list-dsos: added package install time trac#123 (jmoskovc@redhat.com) -- retrace client: handle messages in HTTP body (mtoman@redhat.com) -- retrace server: remove chroot on failure (mtoman@redhat.com) -- spec: use versioned deps on libreport (jmoskovc@redhat.com) -- generate abrt version from git (npajkovs@redhat.com) -- abrt-action-trim-files needs to be suided rhbz#699098 (jmoskovc@redhat.com) -- gui: suppress printing dumpdir access errors (bz#698418) (mlichvar@redhat.com) -- Do not leave dump dir locked by abrt-action-generate-backtrace. (kklic@redhat.com) -- wizard: expand explanatory text on 1st screen. Closes 201 (dvlasenk@redhat.com) -- gui: fixed the OK and CANCEL buttons order in event config dialog (jmoskovc@redhat.com) -- Make abrt-action-list-dsos.py take -m maps -o dsos params; and abrt-action-analyze-core.py to take -o build_ids param (dvlasenk@redhat.com) -- abrt-action-install-debuginfo.py: don't die on some Yum exceptions. closes bz#681281 (dvlasenk@redhat.com) - -* Thu Apr 21 2011 Jiri Moskovcak 2.0.1-2 -- don't allow reporting of backtrace with rating = 0 rhbz#672023 -- use versioned deps on libreport - -* Wed Apr 20 2011 Jiri Moskovcak 2.0.1-1 -- updated to 2.0.1 -- updated translation -- allowed reporting oops to bugzilla -- added warning when the plugin settings are wrong -- added help text in plugins settings -- the plugin settings dialog is translatable -- improved dir rescanning logic in abrt-gui -- fixed icons for child dialogs -- retrace-client: human readable messages instead of http codes -- save envirnment variables when app crashes -- fixed gpg/pgp check -- revert to the old icon - -* Fri Apr 15 2011 Jiri Moskovcak 2.0.0-5 -- fixed problem with abrt-action-debuginfo-install rhbz#692064 - -* Thu Mar 31 2011 Jiri Moskovcak 2.0.0-4 -- fixed prgname in wizard rhbz#692442 - -* Wed Mar 30 2011 Jiri Moskovcak 2.0.0-3 -- fixed notification persistence in gnome3 (again) -- fixed wrong group:user on /var/cache/abrt-di afte rupdate from abrt 1.x #692064 -- added mono-core to blacklist - -* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 -- use %%ghost on files in /var/run and /var/lock rhbz#656542 -- fixed notification persistence in gnome3 -- added analyze selector to CLI -- refuse reporting to bz without backtrace or hash -- use g_set_prgname to set the prgname of abrt-gui trac#180 - -* Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 -- update to the latest upstream version -- many improvements -- FIXME: add closed bugzillas - -* Fri Feb 18 2011 Jiri Moskovcak 1.1.17-2 -- removed gnome-python2-vfs dependency - -* Mon Feb 07 2011 Fedora Release Engineering - 1.1.17-1.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 -- rewritten abrt-debuginfo-install script to use the yum API -- GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) -- fixed some gui warnings rhbz#671488 (jmoskovc@redhat.com) -- btparser/dupechecker improvements: - - Better handling of glibc architecture-specific functions (kklic@redhat.com) - - support format of thread header: "Thread 8 (LWP 6357):" (kklic@redhat.com) - -* Fri Feb 04 2011 Jiri Moskovcak 1.1.16-1 -- rhtsupport: added list of attachments to comment rhbz#668875 -- rhtsupport: stop consuming non-standard header rhbz#670492 -- Resolves: #670492, #668875 - -* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-2 -- add a gui/uid to useradd/groupadd command (reserved in setup rhbz#670231) -- Resolves: #650975 - -* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-1 -- removed unused files (jmoskovc@redhat.com) -- update po files (jmoskovc@redhat.com) -- removed some unused files (jmoskovc@redhat.com) -- pass old pattern to ccpp hook and use it (dvlasenk@redhat.com) -- GUI: added warning when gnome-keyring can't be accessed rhbz#576866 (jmoskovc@redhat.com) -- 666893 - Unable to make sense of XML-RPC response from server (npajkovs@redhat.com) -- PyHook: ignore SystemExit exception rhbz#636913 (jmoskovc@redhat.com) -- 665405 - ABRT's usage of sos does not grab /var/log/messages (npajkovs@redhat.com) -- add a note in report if kernel is tainted (npajkovs@redhat.com) -- KerneloopsScanner.cpp: make a room for NULL byte (npajkovs@redhat.com) -- fix multicharacter warring (npajkovs@redhat.com) -- open help page instead of about rhbz#666267 - -* Wed Jan 19 2011 Jiri Moskovcak 1.1.14-3 -- fixed build with rpm 4.9 (thx panu pmatilai for the patch) - -* Wed Jan 19 2011 Matthias Clasen 1.1.14-2 -- Rebuild against new rpm - -* Wed Nov 17 2010 Jiri Moskovcak 1.1.14-1 -- made howto mandatory -- fixed segv in abrt-hook-ccpp rhbz#652338 -- added warning if kernel was tainted -- make the "install debuginfo" hint selectable rhbz#644343 -- wrap howto and comments rhbz#625237 -- wrap lines in the backtrace window rhbz#625232 -- changed '*' to '•' rhbz#625236 -- make the bt viewer not-editable rhbz#621871 -- removed unneeded patches - -* Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 -- Rebuild for libnotify-0.7 - -* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2 -- Rebuild for python-2.7 - -* Tue Aug 10 2010 Jiri Moskovcak 1.1.13-1 -- updated translation -- added native systemd file rhbz#617316 (jmoskovc@redhat.com) -- added ar to LINGUAS (jmoskovc@redhat.com) -- made /etc/abrt/plugins/Bugzilla.conf world-readable again (jmoskovc@redhat.com) -- l10n: adding fa locale (lashar@fedoraproject.org) -- l10n: new Persian (lashar@fedoraproject.org) -- remove libzip code (npajkovs@redhat.com) -- add libxml-2.0 into configure (npajkovs@redhat.com) -- fixed typo in man page rhbz#610748 (jmoskovc@redhat.com) -- RHTSupport: GUI's SSLVerify checkbox had one missing bit of code (vda.linux@googlemail.com) -- abrt_curl: discard headers from HTTP redirection (vda.linux@googlemail.com) -- moved abrt.socket and abrtd.lock into /var/run/abrt making selinux happy (jmoskovc@redhat.com) -- Mention --info and --backtrace in the abrt-cli man page. (kklic@redhat.com) -- build fixes for gcc 4.5 (jmoskovc@redhat.com) -- abrt-hook-ccpp: small fixes prompted by testing on RHEL5 (vda.linux@googlemail.com) -- Added --info action to abrt-cli (mtoman@redhat.com) -- wire up SSLVerify in RHTSupport.conf to actually have the desired effect (vda.linux@googlemail.com) -- fixed tooltip localization rhbz#574693 (jmoskovc@redhat.com) -- dumpoops/KerneloopsScanner: add pid to crashdump name (vda.linux@googlemail.com) -- A message change suggested by dhensley (kklic@redhat.com) - -* Tue Jul 27 2010 David Malcolm - 1.1.10-4 -- rebuild - -* Tue Jul 27 2010 Jiri Moskovcak 1.1.10-3 -- blacklist /usr/bin/nspluginviewer - -* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-2 -- minor build fixes - -* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-1 -- blacklisted mono-core package -- die with an error message if the database plugin is not accessible when needed (kklic@redhat.com) -- change RHTSupport URL protocol from HTTP to HTTPS (dvlasenk@redhat.com) -- the Logger plugin returns a message as the result of Report() call instead of a file URL (kklic@redhat.com) -- Cut off prelink suffixes from executable name if any (mtoman@redhat.com) -- CCpp: abrt-debuginfo-install output lines can be long, accomodate them (dvlasenk@redhat.com) -- do not pop up message on crash if the same crash is the same (dvlasenk@redhat.com) -- fedora bugs do not depend on rhel bugs (npajkovs@redhat.com) -- GUI: fixed problem with no gkeyring and just one reporter enabled rhbz#612457 (jmoskovc@redhat.com) -- added a document about interpreted language integration (kklic@redhat.com) -- moved devel header files to inc/ and included them in -devel package (jmoskovc@redhat.com, npajkovs@redhat.com) -- renamed abrt-utils.pc to abrt.pc (jmoskovc@redhat.com) -- string updates based on a UI text review (kklic@redhat.com) -- rhtsupport obsoletes the old rh plugins (jmoskovc@redhat.com) -- list allowed items in RHTSupport.conf (kklic@redhat.com) -- GUI: fixed package name in warning message when the packge is kernel rhbz#612191 (jmoskovc@redhat.com) -- remove rating for python crashes (jmoskovc@redhat.com) -- CCpp: give zero rating to an empty backtrace (jmoskovc@redhat.com) -- GUI: allow sending crashes without rating (jmoskovc@redhat.com) -- RHTSupport: set default URL to api.access.redhat.com/rs (dvlasenk@redhat.com) -- abort initialization on abrt.conf parsing errors (dvlasenk@redhat.com) -- changing NoSSLVerify to SSLVerify in bugzilla plugin (mtoman@redhat.com) -- added rating to python crashes -- show hostname in cli (kklic@redhat.com) -- updated po files (jmoskovc@redhat.com) -- added support for package specific actions rhbz#606917 (jmoskovc@redhat.com) -- renamed TicketUploader to ReportUploader (jmoskovc@redhat.com) -- bad hostnames on remote crashes (npajkovs@redhat.com) -- unlimited MaxCrashReportsSize (npajkovs@redhat.com) -- abrt_rh_support: improve error messages rhbz#608698 (vda.linux@googlemail.com) -- Added BacktraceRemotes option. (kklic@redhat.com) -- Allow remote crashes to not to belong to a package. Skip GPG check on remote crashes. (kklic@redhat.com) -- remove obsolete Catcut and rhfastcheck reporters (vda.linux@googlemail.com) -- make rhel bug point to correct place rhbz#578397 (npajkovs@redhat.com) -- Show comment and how to reproduce fields when reporing crashes in abrt-cli (kklic@redhat.com) -- Bash completion update (kklic@redhat.com) -- Rename --get-list to --list (kklic@redhat.com) -- Update man page (kklic@redhat.com) -- Options overhaul (kklic@redhat.com) -- abrt should not point to Fedora bugs but create new RHEL bug instead (npajkovs@redhat.com) -- Don't show global uuid in report (npajkovs@redhat.com) -- GUI: don't try to use action plugins as reporters (jmoskovc@redhat.com) -- Added WatchCrashdumpArchiveDir directive to abrt.conf and related code (vda.linux@googlemail.com) -- GUI: don't show the placehondler icon rhbz#605693 (jmoskovc@redhat.com) -- Make "Loaded foo.conf" message less confusing (vda.linux@googlemail.com) -- Fixed a flaw in strbuf_prepend_str (kklic@redhat.com) -- TicketUploader: do not add '\n' to text files in crashdump (vda.linux@googlemail.com) -- GUI: skip the plugin selection, if it's not needed (jmoskovc@redhat.com) -- Check conf file for syntax errors (kklic@redhat.com) -- move misplaced sanity checks in cron parser (vda.linux@googlemail.com) -- GUI: don't require the rating for all reporters (jmoskovc@redhat.com) -- GUI: fixed exception when there is no configure dialog for plugin rhbz#603745 (jmoskovc@redhat.com) -- Add a GUI config dialog for RHTSupport plugin (vda.linux@googlemail.com) -- abrt_curl: fix a problem with incorrect content-length on 32-bit arches (vda.linux@googlemail.com) -- sosreport: save the dump directly to crashdump directory (vda.linux@googlemail.com) -- plugin rename: rhticket -> RHTSupport (vda.linux@googlemail.com) -- Daemon socket for reporting crashes (karel@localhost.localdomain) -- GUI: fixed few typos (jmoskovc@redhat.com) - -* Wed Jul 21 2010 David Malcolm - 1.1.5-1.1 -- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild - -* Wed Jun 09 2010 Jiri Moskovcak 1.1.5-1 -- GUI: polished the reporter assistant (jmoskovc@redhat.com) -- Logger reporter: do not store useless info (vda.linux@googlemail.com) -- ccpp hook: add SaveBinaryImage option which saves of the crashed binary (vda.linux@googlemail.com) -- SPEC: added CFLAGS="-fno-strict-aliasing" to fix the rpmdiff warnings rhbz#599364 (jmoskovc@redhat.com) -- GUI: don't remove user comments when re-reporting the bug rhbz#601779 (jmoskovc@redhat.com) -- remove "(deleted)" from executable path rhbz#593037 (jmoskovc@redhat.com) -- CCpp analyzer: add 60 sec cap on gdb run time. (vda.linux@googlemail.com) -- add new file *hostname* into debugdump directory (npajkovs@redhat.com) -- rhticket: upload real tarball, not a bogus file (vda.linux@googlemail.com) -- abrt-hook-ccpp: eliminate race between process exit and compat coredump creation rhbz#584554 (vda.linux@googlemail.com) -- rhticket: actually do create ticket, using Gavin's lib code (vda.linux@googlemail.com) -- properly obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) -- GUI: remember comment and howto on backtrace refresh rhbz#545690 (jmoskovc@redhat.com) -- use header case in button label rhbz#565812 (jmoskovc@redhat.com) -- make log window resizable (vda.linux@googlemail.com) -- rename a few remaining /var/cache/abrt -> /var/spool/abrt (vda.linux@googlemail.com) - -* Wed May 26 2010 Jiri Moskovcak 1.1.4-1 -- added reporting wizard -- fixed few leaked fds -- fixed kerneloops --- cut here --- problem -- updated translations - -* Fri May 21 2010 Denys Vlasenko 1.1.3-1 -- More fixes for /var/cache/abrt -> /var/spool/abrt conversion - -* Fri May 21 2010 Jiri Moskovcak 1.1.2-3 -- fixed spec file to create /var/spool/abrt rhbz#593670 -- updated init script to reflect the pid file renaming - -* Wed May 19 2010 Jiri Moskovcak 1.1.2-1 -- updated translation -- obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) -- Report "INFO: possible recursive locking detected rhbz#582378 (vda.linux@googlemail.com) -- kill yumdownloader if abrt-debuginfo-install is terminated mid-flight (vda.linux@googlemail.com) -- do not create Python dumps if argv[0] is not absolute (vda.linux@googlemail.com) -- improve kerneloops hash (vda.linux@googlemail.com) -- Move /var/cache/abrt to /var/spool/abrt. rhbz#568101. (vda.linux@googlemail.com) -- bugzilla: better summary and decription messages (npajkovs@redhat.com) -- renamed daemon pid and lock file rhbz#588315 (jmoskovc@redhat.com) -- Daemon socket for reporting crashes (kklic@redhat.com) -- Move hooklib from src/Hooks to lib/Utils (kklic@redhat.com) - -* Thu May 13 2010 Jiri Moskovcak 1.1.1-1 -- updated translations -- removed avant-window-navigator from blacklist (jmoskovc@redhat.com) -- Abort debuginfo download if low on disk space (partially addresses #564451) (vda.linux@googlemail.com) -- fix bug 588945 - sparse core files performance hit (vda.linux@googlemail.com) -- Add BlackListedPaths option to abrt.conf. Fixes #582421 (vda.linux@googlemail.com) -- Do not die when /var/cache/abrt/*/uid does not contain a number (rhbz#580899) (kklic@redhat.com) -- rid of rewriting config in /etc/abrt/abrt.conf (npajkovs@redhat.com) -- fix bug 571411: backtrace attachment of the form /var/cache/abrt/foo-12345-67890/backtrace (vda.linux@googlemail.com) -- Do not echo password to terminal in abrt-cli (kklic@redhat.com) -- improved daemon error messages (kklic@redhat.com) - -* Mon May 03 2010 Jiri Moskovcak 1.1.0-1 -- updated transaltions -- added Hebrew into languages -- updated icons rhbz#587698 (jmoskovc@redhat.com) -- Bugzilla login/password emptiness check uses 'or' instead of 'and' (kklic@redhat.com) -- Show error message when abrtd service is run as non-root. rhbz#584352 (kklic@redhat.com) -- Rename EnableOpenGPG to OpenGPGCheck in the man page rhbz#584332 (kklic@redhat.com) -- Document ProcessUnpackaged in abrt.conf.5. Document default values. (kklic@redhat.com) -- Crash function is now detected even for threads without an abort frame (kklic@redhat.com) -- comment can be private (npajkovs@redhat.com) -- do not catch perl/python crashes when the script is not of known package origin (kklic@redhat.com) -- kerneloop is more informative when failed (npajkovs@redhat.com) -- add function name into summary(if it's found) (npajkovs@redhat.com) -- Change kerneloops message when it fails (npajkovs@redhat.com) - -* Fri Apr 30 2010 Karel Klic 1.0.9-3 -- fixed crash function detection (a part of duplication detection) - -* Wed Apr 14 2010 Jiri Moskovcak 1.0.9-2 -- fixed problem with localized yum messages rhbz#581804 -- better bugzilla summary (napjkovs@redhat.com) -- ignore interpreter (py,perl) crashes caused by unpackaged scripts (kklic@redhat.com) - -* Tue Apr 06 2010 Jiri Moskovcak 1.0.9-1 -- hooklib: fix excessive rounding down in free space calculation (bz#575644) (vda.linux@googlemail.com) -- gui: fix 551989 "crash detected in abrt-gui-1.0.0-1.fc12" and such (vda.linux@googlemail.com) -- trivial: fix 566806 "abrt-gui sometimes can't be closed" (vda.linux@googlemail.com) -- gui: fix the last case where gnome-keyring's find_items_sync() may throw DeniedError (vda.linux@googlemail.com) -- fixed some compilation problems on F13 (jmoskovc@redhat.com) -- updated translations (jmoskovc@redhat.com) -- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) - -* Wed Mar 31 2010 Jiri Moskovcak 1.0.9-0.201003312045.1 -- test day build -- updated translation -- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) -- GUI: total rewrite based on design from Mairin Duffy (jmoskovc@redhat.com) -- trivial: better HTTP/curl error reporting (vda.linux@googlemail.com) -- Use backtrace parser from abrtutils, new backtrace rating algorithm, store crash function if it's known (kklic@redhat.com) -- abrt-rate-backtrace is replaced by abrt-backtrace --rate (kklic@redhat.com) -- Ignore some temp files (kklic@redhat.com) -- PYHOOK: don't use sitecustomize.py rhbz#539497 (jmoskovc@redhat.com) -- rhfastcheck: a new reporter plugin based on Gavin's work (vda.linux@googlemail.com) -- rhticket: new reporter plugin (vda.linux@googlemail.com) -- GUI: fixed few window icons (jmoskovc@redhat.com) -- Allow user to select which reporter he wants to use to report a crash using CLI.(kklic@redhat.com) -- bz reporter: s/uuid/duphash; more understandable message; simplify result str generation; fix indentation (vda.linux@googlemail.com) -- GUI: fixed crash count column sorting rhbz#573139 (jmoskovc@redhat.com) -- Kerneloops: use 1st line of oops as REASON. Closes rhbz#574196. (vda.linux@googlemail.com) -- Kerneloops: fix a case when we file an oops w/o backtrace (vda.linux@googlemail.com) -- minor fix in abrt-debuginfo-install to make it work with yum >= 3.2.26 (jmoskovc@redhat.com) -- GUI: added action to applet to directly report last crash (jmoskovc@redhat.com) -- Never flag backtrace as binary file (fixes problem observed in bz#571411) (vda.linux@googlemail.com) -- improve syslog file detection. closes bz#565983 (vda.linux@googlemail.com) -- add arch, package and release in comment (npajkovs@redhat.com) -- add ProcessUnpackaged option to abrt.conf (vda.linux@googlemail.com) -- abrt-debuginfo-install: use -debuginfo repos which match enabled "usual" repos (vda.linux@googlemail.com) -- fix format security error (fcrozat@mandriva.com) -- icons repackaging (jmoskovc@redhat.com) -- partial fix for bz#565983 (vda.linux@googlemail.com) -- SPEC: Updated source URL (jmoskovc@redhat.com) -- removed unneeded patches -- and much more ... - -* Sat Mar 13 2010 Jiri Moskovcak 1.0.8-3 -- fixed kerneloops reporting rhbz#570081 -- fixed Source url -- fixed debuginfo-install to work on F13 - - improved debuginfo-install (vda.linux@googlemail.com) - - fix debuginfo-install to work with yum >= 3.2.26 (jmoskovc@redhat.com) - -* Wed Mar 3 2010 Denys Vlasenko 1.0.8-2 -- fix initscript even more (npajkovs@redhat.com) -- remove -R2 from yum command line - -* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-1 -- fix initscript (npajkovs@redhat.com) -- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) - -* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-0.git-20100222 -- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) -- make abrt work with the latest kernels (>= 2.6.33) (jmoskovc@redhat.com) -- lib/Utils/abrt_dbus: utf8-sanitize all strings in dbus messages (fixes #565876) (vda.linux@googlemail.com) - -* Fri Feb 12 2010 Jiri Moskovcak 1.0.7-1 -- enabled column sorting rhbz#541853 -- Load plugin settings also from ~/.abrt/*.conf (kklic@redhat.com) -- fix bz#541088 "abrt should not catch python excp EPIPE" (vda.linux@googlemail.com) -- fix bz#554242 "Cannot tab between input areas in report dialog" (vda.linux@googlemail.com) -- fix bz#563484 "abrt uses unnecessary disk space when getting debug info" (vda.linux@googlemail.com) -- Don't show empty 'Not loaded plugins' section - fix#2 rhbz#560971 (jmoskovc@redhat.com) -- fix big-endian build problem (vda.linux@googlemail.com) -- Fixes, displays package owners (kklic@redhat.com) -- GUI: fixed exception in plugin settings dialog rhbz#560851 (jmoskovc@redhat.com) -- GUI: respect system settings for toolbars rhbz#552161 (jmoskovc@redhat.com) -- python hook: move UUID generation to abrtd; generate REASON, add it to bz title (vda.linux@googlemail.com) -- make "reason" field less verbose; bz reporter: include it in "summary" (vda.linux@googlemail.com) -- added avant-window-navigator to blacklist per maintainer request (jmoskovc@redhat.com) -- CCpp analyzer: fix rhbz#552435 (bt rating misinterpreting # chars) (vda.linux@googlemail.com) -- Ask for login and password if missing from reporter plugin. (kklic@redhat.com) -- abrtd: fix handling of dupes (weren't deleting dup's directory); better logging (vda.linux@googlemail.com) -- abrtd: handle "perl -w /usr/bin/script" too (vda.linux@googlemail.com) -- Component-wise duplicates (kklic@redhat.com) -- abrtd: fix rhbz#560642 - don't die on bad plugin names (vda.linux@googlemail.com) -- Fixed parsing backtrace from rhbz#549293 (kklic@redhat.com) -- GUI: fixed scrolling in reporter dialog rhbz#559687 (jmoskovc@redhat.com) -- fixed button order in plugins windows rhbz#560961 (jmoskovc@redhat.com) -- GUI: fixed windows icons and titles rhbz#537240, rhbz#560964 (jmoskovc@redhat.com) -- Fix to successfully parse a backtrace from rhbz#550642 (kklic@redhat.com) -- cli: fix the problem of not showing oops text in editor (vda.linux@googlemail.com) -- GUI: fix rhbz#560971 "Don't show empty 'Not loaded plugins' section" (vda.linux@googlemail.com) - -* Tue Feb 2 2010 Jiri Moskovcak 1.0.6-1 -- print __glib_assert_msg (rhbz#549735); -- SPEC: added some requires to abrt-cli to make it work out-of-the-box (jmoskovc@redhat.com) -- abrt-hook-ccpp: fix rhbz#560612 "limit '18446744073709551615' is bogus" rhbz#560612(vda.linux@googlemail.com) -- APPLET: don't show the icon when abrtd is not running rhbz#557866 (jmoskovc@redhat.com) -- GUI: made report message labels wrap (jmoskovc@redhat.com) -- GUI: don't die if daemon doesn't send the gpg keys (jmoskovc@redhat.com) -- disabled the autoreporting of kerneloopses (jmoskovc@redhat.com) -- Kerneloops: fix BZ reporting of oopses (vda.linux@googlemail.com) -- GUI: wider report message dialog (jmoskovc@redhat.com) -- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) -- Logger: create log file with mode 0600 (vda.linux@googlemail.com) -- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) -- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) -- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) - -* Fri Jan 29 2010 Jiri Moskovcak 1.0.5-1 -- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) -- Logger: create log file with mode 0600 rhbz#559545 (vda.linux@googlemail.com) -- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) -- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) -- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) -- fix bug 559881 (kerneloops not shown in "new" GUI) (vda.linux@googlemail.com) -- GUI ReporterDialog: hide log button (vda.linux@googlemail.com) -- added valgrind and strace to blacklist (jmoskovc@redhat.com) -- SOSreport: do not leave stray files in /tmp (vda.linux@googlemail.com) -- Save the core where it belongs if ulimit -c is > 0 (jmoskovc@redhat.com) -- reenabled gpg check (jmoskovc@redhat.com) -- SOSreport: run it niced (vda.linux@googlemail.com) -- report GUI: rename buttons: Log -> Show log, Send -> Send report (vda.linux@googlemail.com) -- applet: reduce blinking timeout to 3 sec (vda.linux@googlemail.com) -- fix dbus autostart (vda.linux@googlemail.com) -- abrtd: set "Reported" status only if at least one reporter succeeded (vda.linux@googlemail.com) -- SQLite3: disable newline escaping, SQLite does not handle it (vda.linux@googlemail.com) -- SOSreport: make it avoid double runs; add forced regeneration; upd PLUGINS-HOWTO (vda.linux@googlemail.com) -- attribute SEGVs in perl to script's package, like we already do for python (vda.linux@googlemail.com) - -* Wed Jan 20 2010 Jiri Moskovcak 1.0.4-1 -- enabled sosreport -- fixes in ticketuploader -- GUI: redesign of reporter dialog (jmoskovc@redhat.com) -- Set the prgname to "Automatic Bug Reporting Tool" fixes rhbz#550357 (jmoskovc@redhat.com) -- CCpp analyzer: display __abort_msg in backtrace. closes rhbz#549735 (vda.linux@googlemail.com) -- s/os.exit/sys.exit - closes rhbz#556313 (vda.linux@googlemail.com) -- use repr() to print variable values in python hook rhbz#545070 (jmoskovc@redhat.com) -- gui: add logging infrastructure (vda.linux@googlemail.com) -- Added "Enabled = yes" to all plugin's config files (jmoskovc@redhat.com) -- *: disable plugin loading/unloading through GUI. Document keyring a bit (vda.linux@googlemail.com) -- fix memory leaks in catcut plugin (npajkovs@redhat.com) -- fix memory leaks in bugzilla (npajkovs@redhat.com) -- abrt-hook-python: sanitize input more; log to syslog (vda.linux@googlemail.com) -- Fixed /var/cache/abrt/ permissions (kklic@redhat.com) -- Kerneloops: we require commandline for every crash, save dummy one for oopses (vda.linux@googlemail.com) -- *: remove nss dependencies (vda.linux@googlemail.com) -- CCpp: use our own sha1 implementation (less pain with nss libs) (vda.linux@googlemail.com) -- DebugDump: more consistent logic in setting mode and uid:gid on dump dir (vda.linux@googlemail.com) -- fixes based on security review (vda.linux@googlemail.com) -- SOSreport/TicketUploader: use more restrictive file modes (vda.linux@googlemail.com) -- abrt-hook-python: add input sanitization and directory size guard (vda.linux@googlemail.com) -- RunApp: safer chdir. Overhauled "sparn a child and get its output" in general (vda.linux@googlemail.com) -- DebugDump: use more restrictive modes (vda.linux@googlemail.com) -- SQLite3: check for SQL injection (vda.linux@googlemail.com) -- replace plugin enabling via EnabledPlugins by par-plugin Enabled = yes/no (vda.linux@googlemail.com) -- abrt.spec: move "requires: gdb" to abrt-desktop (vda.linux@googlemail.com) -- ccpp: add a possibility to disable backtrace generation (vda.linux@googlemail.com) -- abrtd: limit the number of frames in backtrace to 3000 (vda.linux@googlemail.com) - -* Tue Jan 5 2010 Jiri Moskovcak 1.0.3-1 -- speed optimalization of abrt-debuginfo-install (jmoskovc@redhat.com) -- updated credits (jmoskovc@redhat.com) -- GUI: fixed crash when abrt-gui is run without X server rhbz#552039 (jmoskovc@redhat.com) -- abrt-backtrace manpage installed (kklic@redhat.com) -- cmdline and daemon checking is done by abrt-python-hook (kklic@redhat.com) -- moved get_cmdline() and daemon_is_ok() to abrtlib (kklic@redhat.com) -- large file support for whole abrt (kklic@redhat.com) -- made s_signal_caught volatile (vda.linux@googlemail.com) -- abrt-debuginfo-install: fixes for runs w/o cachedir (vda.linux@googlemail.com) -- remove unsafe log() from signal handler (vda.linux@googlemail.com) -- src/Hooks/CCpp.cpp: use and honour 'c' (core limit size). (vda.linux@googlemail.com) -- lib/Plugins/CCpp.cpp: save gdb error messages too (vda.linux@googlemail.com) -- prevent destructors from throwing exceptions; check curl_easy_init errors (vda.linux@googlemail.com) -- don't blame python for every crash in /usr/bin/python rhbz#533521 trac#109 (jmoskovc@redhat.com) -- GUI: autoscroll log window (jmoskovc@redhat.com) -- Kerneloops.conf: better comments (vda.linux@googlemail.com) -- applet: reduce blinking time to 30 seconds (vda.linux@googlemail.com) -- add paranoia checks on setuid/setgid (vda.linux@googlemail.com) -- more "obviously correct" code for secure opening of /dev/null (vda.linux@googlemail.com) -- get rid of ugly sleep call inside while() (vda.linux@googlemail.com) - -* Mon Dec 14 2009 Jiri Moskovcak 1.0.2-1 -- disabled GPG check again (jmoskovc@redhat.com) -- abrt-pyhook-helper rename (vda.linux@googlemail.com) -- abrt-cli: report success/failure of reporting. closes bug 71 (vda.linux@googlemail.com) -- less logging (vda.linux@googlemail.com) -- mkde abrt-gui --help and --version behave as expected. closes bug 85 (vda.linux@googlemail.com) -- dbus lib: fix parsing of 0-element arrays. Fixes bug 95 (vda.linux@googlemail.com) -- make "abrt-cli --delete randomuuid" report that deletion failed. closes bug 59 (vda.linux@googlemail.com) -- applet: make animation stop after 1 minute. (closes bug 108) (vda.linux@googlemail.com) -- show comment and how to reproduce fields, when BT rating > 3 (jmoskovc@redhat.com) -- Gui: make report status window's text wrap. Fixes bug 82 (vda.linux@googlemail.com) -- CCpp analyzer: added "info sharedlib" (https://fedorahosted.org/abrt/ticket/90) (vda.linux@googlemail.com) -- added link to bugzilla new account page to Bugzilla config dialog (jmoskovc@redhat.com) -- GUI: added log window (jmoskovc@redhat.com) - -* Tue Dec 8 2009 Jiri Moskovcak 1.0.1-1 -- PyHook: better logic for checking if abrtd is running rhbz#539987 (jmoskovc@redhat.com) -- re-enabled gpg sign checking (jmoskovc@redhat.com) -- PyHook: use repr() for displaying variables rhbz#545070 (jmoskovc@redhat.com) -- kerneloops: fix the linux kernel version identification (aarapov@redhat.com) -- gui review (rrakus@redhat.com) -- when we trim the dir, we must delete it from DB too rhbz#541854 (vda.linux@googlemail.com) -- improved dupe checking (kklic@redhat.com) -- GUI: handle cases when gui fails to start daemon on demand rhbz#543725 (jmoskovc@redhat.com) -- Add abrt group only if it is missing; fixes rhbz#543250 (kklic@redhat.com) -- GUI: more string fixes rhbz#543266 (jmoskovc@redhat.com) -- abrt.spec: straighten out relations between abrt-desktop and abrt-gui (vda.linux@googlemail.com) -- refuse to start if some required plugins are missing rhbz#518422 (vda.linux@googlemail.com) -- GUI: survive gnome-keyring access denial rhbz#543200 (jmoskovc@redhat.com) -- typo fixes rhbz#543266 (jmoskovc@redhat.com) -- abrt-debuginfo-install: better fix for incorrect passing double quotes (vda.linux@googlemail.com) -- APPLET: stop animation when it's not needed rhbz#542157 (jmoskovc@redhat.com) -- ccpp hook: reanme it, and add "crash storm protection" (see rhbz#542003) (vda.linux@googlemail.com) -- Hooks/CCpp.cpp: add MakeCompatCore = yes/no directive. Fixes rhbz#541707 (vda.linux@googlemail.com) -- SPEC: removed sqlite3 package, fixed some update problems (jmoskovc@redhat.com) -- Kerneloops are reported automaticky now when AutoReportUIDs = root is in Kerneloops.conf (npajkovs@redhat.com) -- remove word 'detected' from description rhbz#541459 (vda.linux@googlemail.com) -- src/Hooks/CCpp.cpp: do save abrtd's own coredumps, but carefully... (vda.linux@googlemail.com) -- CCpp.cpp: quote parameters if needed rhbz#540164 (vda.linux@googlemail.com) - -* Fri Nov 20 2009 Jiri Moskovcak 1.0.0-1 -- new version -- comment input wraps words rhbz#531276 -- fixed hiding password dialog rhbz#529583 -- easier kerneloops reporting rhbz#528395 -- made menu entry translatable rhbz#536878 (jmoskovc@redhat.com) -- GUI: don't read the g-k every time we want to use the setting (jmoskovc@redhat.com) -- GUI: survive if g-k access is denied rhbz#534171 (jmoskovc@redhat.com) -- include more info into oops (we were losing the stack dump) (vda.linux@googlemail.com) -- make BZ insert small text attachments inline; move text file detection code (vda.linux@googlemail.com) -- GUI: fixed text wrapping in comment field rhbz#531276 (jmoskovc@redhat.com) -- GUI: added cancel to send dialog rhbz#537238 (jmoskovc@redhat.com) -- include abrt version in bug descriptions (vda.linux@googlemail.com) -- ccpp hook: implemented ReadonlyLocalDebugInfoDirs directive (vda.linux@googlemail.com) -- GUI: added window icon rhbz#537240 (jmoskovc@redhat.com) -- add support for \" escaping in config file (vda.linux@googlemail.com) -- add experimental saving of /var/log/Xorg*.log for X crashes (vda.linux@googlemail.com) -- APPLET: changed icon from default gtk-warning to abrt specific, add animation (jmoskovc@redhat.com) -- don't show icon on abrtd start/stop rhbz#537630 (jmoskovc@redhat.com) -- /var/cache/abrt permissions 1775 -> 0775 in spec file (kklic@redhat.com) -- Daemon properly checks /var/cache/abrt attributes (kklic@redhat.com) -- abrt user group; used by abrt-pyhook-helper (kklic@redhat.com) -- pyhook-helper: uid taken from system instead of command line (kklic@redhat.com) -- KerneloopsSysLog: fix breakage in code which detects abrt marker (vda.linux@googlemail.com) -- GUI: added support for backtrace rating (jmoskovc@redhat.com) -- InformAllUsers support. enabled by default for Kerneloops. Tested wuth CCpp. (vda.linux@googlemail.com) -- abrtd: call res_init() if /etc/resolv.conf or friends were changed rhbz#533589 (vda.linux@googlemail.com) -- supress errors in python hook to not colide with the running script (jmoskovc@redhat.com) - -* Tue Nov 10 2009 Jiri Moskovcak 0.0.11-2 -- spec file fixes - -* Mon Nov 2 2009 Jiri Moskovcak 0.0.11-1 -- re-enabled kerneloops -- abrt-debuginfo-install: download packages one-by-one - better logging (vda.linux@googlemail.com) -- do not report empty fields (vda.linux@googlemail.com) -- Added abrt.png, fixed rhbz#531181 (jmoskovc@redhat.com) -- added option DebugInfoCacheMB to limit size of unpacked debuginfos (vda.linux@googlemail.com) -- fixed the problem with overwriting the default plugin settings (jmoskovc@redhat.com) -- disabled kerneloops in config file (jmoskovc@redhat.com) -- added dependency to gdb >= 7.0 (jmoskovc@redhat.com) -- better format of report text (vda.linux@googlemail.com) -- Python backtrace size limited to 1 MB (kklic@redhat.com) -- lib/Plugins/Bugzilla: better message at login failure (vda.linux@googlemail.com) -- build fixes, added plugin-logger to abrt-desktop (jmoskovc@redhat.com) -- blacklisted nspluginwrapper, because it causes too many useless reports (jmoskovc@redhat.com) -- GUI: Wrong settings window is not shown behind the reporter dialog rhbz#531119 (jmoskovc@redhat.com) -- Normal user can see kerneloops and report it Bugzilla memory leaks fix (npajkovs@redhat.com) -- dumpoops: add -s option to dump results to stdout (vda.linux@googlemail.com) -- removed kerneloops from abrt-desktop rhbz#528395 (jmoskovc@redhat.com) -- GUI: fixed exception when enabling plugin rhbz#530495 (jmoskovc@redhat.com) -- Improved abrt-cli (kklic@redhat.com) -- Added backtrace rating to CCpp analyzer (dnovotny@redhat.com) -- GUI improvements (jmoskovc@redhat.com) -- Added abrt-pyhook-helper (kklic@redhat.com) - -* Thu Oct 15 2009 Jiri Moskovcak 0.0.10-1 -- new version -- added more logging (vda.linux@googlemail.com) -- made polkit policy to be more permissive when installing debuginfo (jmoskovc@redhat.com) -- lib/Plugins/CCpp.cpp: add build-ids to backtrace (vda.linux@googlemail.com) -- lib/Plugins/CCpp.cpp: do not use temp file for gdb commands - use -ex CMD instead (vda.linux@googlemail.com) -- GUI: added refresh button, added sanity check to plugin settings (jmoskovc@redhat.com) -- Initial man page for abrt-cli (kklic@redhat.com) -- Added --version, -V, --help, -? options. Fixed crash caused by unknown option. (kklic@redhat.com) -- Date/time honors current system locale (kklic@redhat.com) -- fixed saving/reading user config (jmoskovc@redhat.com) -- SPEC: added gnome-python2-gnomekeyring to requirements (jmoskovc@redhat.com) -- GUI: call Report() with the latest pluginsettings (jmoskovc@redhat.com) -- Fix Bug 526220 - [abrt] crash detected in abrt-gui-0.0.9-2.fc12 (vda.linux@googlemail.com) -- removed unsecure reading/writting from ~HOME directory rhbz#522878 (jmoskovc@redhat.com) -- error checking added to archive creation (danny@rawhide.localdomain) -- try using pk-debuginfo-install before falling back to debuginfo-install (vda.linux@googlemail.com) -- abrt-gui: make "report" toolbar button work even if abrtd is not running (vda.linux@googlemail.com) -- set LIMIT_MESSAGE to 16k, typo fix and daemon now reads config information from dbus (npajkovs@redhat.com) -- add support for abrtd autostart (vda.linux@googlemail.com) -- GUI: reversed the dumplist, so the latest crashes are at the top (jmoskovc@redhat.com) -- rewrite FileTransfer to use library calls instead of commandline calls for compression (dnovotny@redhat.com) -- and many minor fixes .. - -* Wed Sep 23 2009 Jiri Moskovcak 0.0.9-2 -- added bug-buddy to provides rhbz#524934 - -* Tue Sep 22 2009 Jiri Moskovcak 0.0.9-1 -- new version -- comments and how to reproduce are stored now (npajkovs@redhat.com) -- reduce verbosity a bit (vda.linux@googlemail.com) -- GUI: fixed word wrap in Comment field rhbz#524349 (jmoskovc@redhat.com) -- remove last vestives of dbus-c++ from build system (vda.linux@googlemail.com) -- GUI: added popup menu, fixed behaviour when run with root privs (jmoskovc@redhat.com) -- add dbus signalization when quota exceeded (npajkovs@redhat.com) -- Added cleaning of attachment variable, so there should not be mixed attachmetn anymore. (zprikryl@redhat.com) -- fixed closing of debug dump in case of existing backtrace (zprikryl@redhat.com) -- remove C++ dbus glue in src/CLI; fix a bug in --report (vda.linux@googlemail.com) -- new polkit action for installing debuginfo, default "yes" (danny@rawhide.localdomain) -- Polkit moved to Utils (can be used both in daemon and plugins) (danny@rawhide.localdomain) -- oops... remove stray trailing '\' (vda.linux@googlemail.com) -- GUI: added missing tooltips (jmoskovc@redhat.com) -- PYHOOK: ignore KeyboardInterrupt exception (jmoskovc@redhat.com) -- added ticket uploader plugin (gavin@redhat.com) (zprikryl@redhat.com) -- GUI: added UI for global settings (just preview, not usable!) (jmoskovc@redhat.com) -- Add checker if bugzilla login and password are filled in. (npajkovs@redhat.com) -- Add new config option InstallDebuginfo into CCpp.conf (npajkovs@redhat.com) -- translation updates -- many other fixes - -* Fri Sep 4 2009 Jiri Moskovcak 0.0.8.5-1 -- new version -- APPLET: added about dialog, removed popup, if icon is not visible, fixed (trac#43) (jmoskovc@redhat.com) -- renamed abrt to abrtd, few minor spec file fixes (jmoskovc@redhat.com) -- Made abrt service start by deafult (jmoskovc@redhat.com) -- add gettext support for all plugins (npajkovs@redhat.com) -- APPLET: removed the warning bubble about not running abrt service (walters) -- APPLET: changed tooltip rhbz#520293 (jmoskovc@redhat.com) -- CommLayerServerDBus: rewrote to use dbus, not dbus-c++ (vda.linux@googlemail.com) -- fixed timeout on boot causing [ FAILED ] message (vda.linux@googlemail.com) -- and many other fixes - -* Wed Sep 02 2009 Colin Walters 0.0.8-2 -- Change Conflicts: kerneloops to be an Obsoletes so we do the right thing - on upgrades. Also add an Obsoletes: bug-buddy. - -* Wed Aug 26 2009 Jiri Moskovcak 0.0.8-1 -- new version -- resolved: Bug 518420 - ordinary user's abrt-applet shows up for root owned crashes (npajkovs) -- GUI: added support for gettext (+part of czech translation) (jmoskovc) -- added support for saving settings (zprikryl) -- fixed conf: comment in the middle of the line isn't supported anymore (zprikryl) -- BZ#518413 PATCH ... furious kerneloops reporting (aarapov) -- GUI: added first part of support for gettext (jmoskovc) -- add new parameter to FileTransfer plugin (dnovotny) -- added support for updating abrt's table (zprikryl) -- added check for cc-list and reporter. +1 is created iff reporter is somebody else and current user isn't in cc list. (zprikryl) -- GUI: few improvements, to be more userfriendly (jmoskovc) -- LOGGER: return valid uri of the log file on succes (jmoskovc) -- GUI: bring the GUI up to front instead of just blinking in taskbar (trac#60, rhbz#512390) (jmoskovc) -- Try to execute $bindir/abrt-gui, then fall back to $PATH search. Closes bug 65 (vda.linux) -- APPLET: added popup menu (trac#37, rhbz#518386) (jmoskovc) -- Improved report results (zprikryl) -- Fixed sigsegv (#rhbz 518609) (zprikryl) -- GUI: removed dependency on libsexy if gtk2 >= 2.17 (jmoskovc) -- fixed signature check (zprikryl) -- KerneloopsSysLog: check line length to be >= 4 before looking for "Abrt" (vda.linux) -- Comment cannot start in the middle of the line. Comment has to start by Char # (first char in the line) (zprikryl) -- command mailx isn't run under root anymore. (zprikryl) -- GUI: added horizontal scrolling to report window (jmoskovc) -- GUI: added clickable link to "after report" status window (jmoskovc) -- added default values for abrt daemon (zprikryl) -- Plugins/CCpp: remove trailing \n from debuginfo-install's output (vda.linux) -- explain EnableGPGCheck option better (vda.linux) -- mailx: correct English (vda.linux) -- Bugzilla.conf: correct English (vda.linux) -- GUI: nicer after report message (jmoskovc) -- BZ plugin: removed /xmlrpc.cgi from config, made the report message more user friendly (jmoskovc) -- CCpp plugin: do not abort if debuginfos aren't found (vda.linux) -- abrt.spec: bump version to 0.0.7-2 (vda.linux) -- mailx removed dangerous parameter option (zprikryl) -- minimum timeout is 1 second (zprikryl) -- in case of plugin error, don't delete debug dumps (zprikryl) -- abrt-gui: fix crash when run by root (vda.linux) -- and lot more in git log ... - -* Thu Aug 20 2009 Jiri Moskovcak 0.0.7.2-1 -- new version -- fixed some bugs found during test day - -* Wed Aug 19 2009 Jiri Moskovcak 0.0.7.1-1 -- fixes to bugzilla plugin and gui to make the report message more user-friendly - -* Tue Aug 18 2009 Denys Vlasenko 0.0.7-2 -- removed dangerous parameter option -- minimum plugin activation period is 1 second -- in case of plugin error, don't delete debug dumps -- abrt-gui: fix crash when run by root -- simplify parsing of debuginfo-install output - -* Tue Aug 18 2009 Jiri Moskovcak 0.0.7-1 -- new version -- added status window to show user some info after reporting a bug - -* Mon Aug 17 2009 Denys Vlasenko 0.0.6-1 -- new version -- many fixes - -* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Jun 25 2009 Jiri Moskovcak 0.0.4-3 -- fixed dependencies in spec file - -* Tue Jun 16 2009 Daniel Novotny 0.0.4-2 -- added manual pages (also for plugins) - -* Mon Jun 15 2009 Jiri Moskovcak 0.0.4-1 -- new version -- added cli (only supports sockets) -- added python hook -- many fixes - -* Fri Apr 10 2009 Jiri Moskovcak 0.0.3-1 -- new version -- added bz plugin -- minor fix in reporter gui -- Configurable max size of debugdump storage rhbz#490889 -- Wrap lines in report to keep the window sane sized -- Fixed gui for new daemon API -- removed unneeded code -- removed dependency on args -- new guuid hash creating -- fixed local UUID -- fixed debuginfo-install checks -- renamed MW library -- Added notification thru libnotify -- fixed parsing settings of action plugins -- added support for action plugins -- kerneloops - plugin: fail gracefully. -- Added commlayer to make dbus optional -- a lot of kerneloops fixes -- new approach for getting debuginfos and backtraces -- fixed unlocking of a debugdump -- replaced language and application plugins by analyzer plugin -- more excetpion handling -- conf file isn't needed -- Plugin's configuration file is optional -- Add curl dependency -- Added column 'user' to the gui -- Gui: set the newest entry as active (ticket#23) -- Delete and Report button are no longer active if no entry is selected (ticket#41) -- Gui refreshes silently (ticket#36) -- Added error reporting over dbus to daemon, error handling in gui, about dialog - -* Wed Mar 11 2009 Jiri Moskovcak 0.0.2-1 -- added kerneloops addon to rpm (aarapov) -- added kerneloops addon and plugin (aarapov) -- Made Crash() private -- Applet requires gui, removed dbus-glib deps -- Closing stdout in daemon rhbz#489622 -- Changed applet behaviour according to rhbz#489624 -- Changed gui according to rhbz#489624, fixed dbus timeouts -- Increased timeout for async dbus calls to 60sec -- deps cleanup, signal AnalyzeComplete has the crashreport as an argument. -- Fixed empty package Description. -- Fixed problem with applet tooltip on x86_64 - -* Wed Mar 4 2009 Jiri Moskovcak 0.0.1-13 -- More renaming issues fixed.. -- Changed BR from gtkmm24 to gtk2 -- Fixed saving of user comment -- Added a progress bar, new Comment entry for user comments.. -- FILENAME_CMDLINE and FILENAME_RELEASE are optional -- new default path to DB -- Rename to abrt - -* Tue Mar 3 2009 Jiri Moskovcak 0.0.1-12 -- initial fedora release -- changed SOURCE url -- added desktop-file-utils to BR -- changed crash-catcher to %%{name} - -* Mon Mar 2 2009 Jiri Moskovcak 0.0.1-11 -- more spec file fixes according to review -- async dbus method calls, added exception handler -- avoid deadlocks (zprikryl) -- root is god (zprikryl) -- create bt only once (zprikryl) - -* Sat Feb 28 2009 Jiri Moskovcak 0.0.1-10 -- New gui -- Added new method DeleteDebugDump to daemon -- Removed gcc warnings from applet -- Rewritten CCpp hook and removed dealock in DebugDumps lib (zprikryl) -- fixed few gcc warnings -- DBusBackend improvements - -* Fri Feb 27 2009 Jiri Moskovcak 0.0.1-9 -- fixed few gcc warnings -- added scrolled window for long reports - -* Thu Feb 26 2009 Adam Williamson 0.0.1-8 -- fixes for all issues identified in review - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-7 -- Fixed cancel button behaviour in reporter -- disabled core file sending -- removed some debug messages - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-6 -- fixed DB path -- added new signals to handler -- gui should survive the dbus timeout - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-5 -- fixed catching debuinfo install exceptions -- some gui fixes -- added check for GPGP public key - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-4 -- changed from full bt to simple bt - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-3 -- spec file cleanups -- changed default paths to crash DB and log DB -- fixed some memory leaks - -* Tue Feb 24 2009 Jiri Moskovcak 0.0.1-2 -- spec cleanup -- added new subpackage gui - -* Wed Feb 18 2009 Zdenek Prikryl 0.0.1-1 -- initial packing +- a-a-s-p-d: add firefox on the package blacklist diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..f075ad7 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,15 @@ +--- !Policy +product_versions: + - fedora-* +decision_context: bodhi_update_push_testing +subject_type: koji_build +rules: + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} + +--- !Policy +product_versions: + - fedora-* +decision_context: bodhi_update_push_stable +subject_type: koji_build +rules: + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} diff --git a/sources b/sources index 0777d20..4e58c99 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ab0744ee52a36c0d647ae1af9a356090 abrt-2.8.0.tar.gz +SHA512 (abrt-2.17.8.tar.gz) = 90b74229412e0186bfa109ee940a60c9f3c0f7ce8c1216acad6f05619a1bb591e7f0bae87363143a05034312c9f14fe5ace341b84f680780ceb93a1e624705b3 diff --git a/tests/smoke.fmf b/tests/smoke.fmf new file mode 100644 index 0000000..69759b3 --- /dev/null +++ b/tests/smoke.fmf @@ -0,0 +1,10 @@ +summary: Basic smoke test for abrt +prepare: + how: install + # Do not attempt to install conflicting subpackages. + exclude: + - abrt-atomic + - abrt-java-connector-container + - python3-abrt-container-addon +execute: + script: abrt-action-notify --help