public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/abrt] update-2.17.9-f44: New upstream release 2.8.1
@ 2026-08-03 11:04 Matej Habrnal
  0 siblings, 0 replies; only message in thread
From: Matej Habrnal @ 2026-08-03 11:04 UTC (permalink / raw)
  To: git-commits

            A new commit has been pushed.

            Repo   : rpms/abrt
            Branch : update-2.17.9-f44
            Commit : 168feccb111132b261836f3547a5cc5b6e987007
            Author : Matej Habrnal <mhabrnal@redhat.com>
            Date   : 2016-05-25T09:48:30+02:00
            Stats  : +22/-93332 in 14 file(s)
            URL    : https://src.fedoraproject.org/rpms/abrt/c/168feccb111132b261836f3547a5cc5b6e987007?branch=update-2.17.9-f44

            Log:
            New upstream release 2.8.1

Signed-off-by: Matej Habrnal <mhabrnal@redhat.com>

---
diff --git a/.gitignore b/.gitignore
index 9ed15f7..af7f453 100644
--- a/.gitignore
+++ b/.gitignore
@@ -48,3 +48,4 @@ abrt-1.1.13.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

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 <jfilak@redhat.com>
-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 <jfilak@redhat.com>
----
- 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/<pid> 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 <jfilak@redhat.com>
-Date: Thu, 11 Feb 2016 14:51:00 +0100
-Subject: [PATCH] Translation updates
-
-Signed-off-by: Jakub Filak <jfilak@redhat.com>
----
- 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 <jmoskovc@redhat.com>, 2011
-+# Khalid Moharrum <khalid.moharram@gmail.com>, 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 <jfilak@redhat.com>\n"
-+"PO-Revision-Date: 2015-11-03 07:57-0500\n"
-+"Last-Translator: Khalid Moharrum <khalid.moharram@gmail.com>\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é <josep@substantiu.com>, 2014
- # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2014. #zanata
- # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015. #zanata
-+# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 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 <rbuj@fedoraproject.org>\n"
- "Language-Team: Catalan <fedora@llistes.softcatala.org>\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 <jiri@eischmann.cz>\n"
-+"PO-Revision-Date: 2015-05-13 05:06-0400\n"
-+"Last-Translator: Zdenek <chmelarz@gmail.com>\n"
- "Language-Team: čeština <gnome-cs-list@gnome.org>\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\" "
- "&gt;(warning)&lt;/a&gt;"
- msgstr ""
--"K povolení nezabezpečeného spojení použijte pole <a href=\"https://"
--"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" "
--">Nezabezpečený</a>"
-+"Zapiště \"nezabezpečený\" k povolení nezabezpečeného připojení &lt;a href="
-+"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" "
-+"&gt;(varování)&lt;/a&gt;"
- 
- #: ../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 <rspirgi@gmail.com>\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 <alex94puchades@gmail.com>\n"
-+"PO-Revision-Date: 2015-09-30 06:57-0400\n"
-+"Last-Translator: Gladys Guerrero Lozano <gguerrer@redhat.com>\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 <vpivaini@cs.helsinki.fi>, 2011
- # Ville-Pekka Vainio <vpvainio@iki.fi>, 2011-2013
- # Ville Skyttä <ville.skytta@iki.fi>, 2011
-+# Juhani Numminen <juhaninumminen0@gmail.com>, 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 <jfilak@redhat.com>\n"
-+"PO-Revision-Date: 2016-01-12 01:09-0500\n"
-+"Last-Translator: Juhani Numminen <juhaninumminen0@gmail.com>\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 <sam.friedmann@redhat.com>, 2014
- # Vincent HERBER <vincent.herber@gmail.com>, 2011
- # Vincent  <vincent.herber@gmail.com>, 2011
-+# Jibec <jean-baptiste@holcroft.fr>, 2015. #zanata
- # Julie Carbone <jcarbone@redhat.com>, 2015. #zanata
-+# Maxim Therrien <acerspyro@gmail.com>, 2015. #zanata
- # dominique <chepioq@gmail.com>, 2015. #zanata
-+# Jérôme Bivia <jerome.bivia@gmail.com>, 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 <chepioq@gmail.com>\n"
-+"PO-Revision-Date: 2016-01-16 11:19-0500\n"
-+"Last-Translator: Jérôme Bivia <jerome.bivia@gmail.com>\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 <teknos.ferenc@gmail.com>, 2013-2014
- # Zoltan Hoppár <zoltanh721@fedoraproject.org>, 2011-2013
- # Zoltan Hoppár <zoltanh721@fedoraproject.org>, 2014
-+# Kardos László <kardiweb@protonmail.ch>, 2015. #zanata
- # Szűcs Kornél Géza <sz.kornelgeza@gmail.com>, 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 <sz.kornelgeza@gmail.com>\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 <tomo@dream.daynight.jp>, 2012-2013
- # carrotsoft <www.carrotsoft@gmail.com>, 2011, 2012
- # Noriko Mizumoto <noriko@redhat.com>, 2015. #zanata
-+# Ooyama Yosiyuki <qqke6wd9k@apricot.ocn.ne.jp>, 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 <noriko@redhat.com>\n"
-+"PO-Revision-Date: 2015-08-23 07:49-0400\n"
-+"Last-Translator: Ooyama Yosiyuki <qqke6wd9k@apricot.ocn.ne.jp>\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 <leap@systemexperts.asia>, 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 <jfilak@redhat.com>\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 <leap@systemexperts.asia>\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 &lt;a "
--"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\""
--" &gt;(warning)&lt;/a&gt;"
-+"Write \"insecure\" to allow insecure connection &lt;a href=\"https://"
-+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" "
-+"&gt;(warning)&lt;/a&gt;"
- 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 <jmoskovc@redhat.com>, 2011
- #   <raypoatssium@gmail.com>, 2011-2012
- #   <raypoatssium@gmail.com>, 2011-2012, 2013
-+# MinWoo Joh <igtzhsou@naver.com>, 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 <jfilak@redhat.com>\n"
-+"PO-Revision-Date: 2015-07-30 11:38-0400\n"
-+"Last-Translator: MinWoo Joh <igtzhsou@naver.com>\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 <apeter@redhat.com>\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 <geert.warrink@onsnet.nu>\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 <piotrdrag@gmail.com>\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\" "
- "&gt;(warning)&lt;/a&gt;"
- msgstr ""
--"Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego &lt;a "
-+"Wpisanie „insecure” umożliwia użycie połączenia niezabezpieczonego &lt;a "
- "href=\"https://fedorahosted.org/abrt/wiki/"
- "AbrtRetraceServerInsecureConnection\" &gt;(ostrzeżenie)&lt;/a&gt;"
- 
-@@ -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 <danielthpro@gmail.com>, 2013
- # Ricardo Pinto <ricardo.bigote@gmail.com>, 2012
- # Rui Gouveia <rui.gouveia@gmail.com>, 2011, 2012
-+# Manuela Silva <manuela.silva@sky.com>, 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 <jfilak@redhat.com>\n"
-+"PO-Revision-Date: 2015-08-17 08:03-0400\n"
-+"Last-Translator: Manuela Silva <manuela.silva@sky.com>\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 <igor.gorbounov@gmail.com>\n"
-+"PO-Revision-Date: 2015-07-20 08:46-0400\n"
-+"Last-Translator: yuliya <ypoyarko@redhat.com>\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ň <michal.hrin@yahoo.com>, 2011
- # Milan Ondrašovič <milan.ondrasovic@gmail.com>, 2013
- # Richard Marko <rissko@gmail.com>, 2012
-+# Dusan Kazik <prescott66@gmail.com>, 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 <jfilak@redhat.com>\n"
-+"PO-Revision-Date: 2015-10-21 12:10-0400\n"
-+"Last-Translator: Dusan Kazik <prescott66@gmail.com>\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 <silva.arapi19@gmail.com>, 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 <jfilak@redhat.com>\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 <silva.arapi19@gmail.com>\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 &lt;a "
--"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\""
--" &gt;(warning)&lt;/a&gt;"
-+"Write \"insecure\" to allow insecure connection &lt;a href=\"https://"
-+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" "
-+"&gt;(warning)&lt;/a&gt;"
- 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 <jmoskovc@redhat.com>, 2011
-+# Momcilo Medic <medicmomcilo@gmail.com>, 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 <jfilak@redhat.com>\n"
-+"PO-Revision-Date: 2015-09-17 07:58-0400\n"
-+"Last-Translator: Momcilo Medic <medicmomcilo@gmail.com>\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 <operation> [options]\n"
- "Operations: create/status/backtrace/log/batch/exploitable"
- msgstr ""
-+"abrt-retrace-client <operation> [опције]\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\" "
- "&gt;(warning)&lt;/a&gt;"
- msgstr ""
-+"Напиши \"insecure\" да дозволите несигурну везу &lt;a href=\"https://"
-+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" "
-+"&gt;(warning)&lt;/a&gt;"
- 
- #: ../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 <goeran@uddeborg.se>\n"
- "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\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 <jmoskovc@redhat.com>, 2011
- # Terry Chuang <tchuang@redhat.com>, 2011-2013
- # Chester Cheng <ccheng@redhat.com>, 2015. #zanata
-+# Ding-Yi Chen <dchen@redhat.com>, 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 <pswo10680@gmail.com>\n"
-+"PO-Revision-Date: 2016-02-01 06:25-0500\n"
-+"Last-Translator: Ding-Yi Chen <dchen@redhat.com>\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 <jfilak@redhat.com>
-Date: Thu, 11 Feb 2016 15:26:27 +0100
-Subject: [PATCH] translations: add missing new line
-
-Signed-off-by: Jakub Filak <jfilak@redhat.com>
----
- 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 <yurchor@ukr.net>
-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 <mhabrnal@redhat.com>
-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 <mhabrnal@redhat.com>
----
- 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/0008-CCpp-turn-off-compat-cores.patch b/0008-CCpp-turn-off-compat-cores.patch
deleted file mode 100644
index f311c0b..0000000
--- a/0008-CCpp-turn-off-compat-cores.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-From 10a3ff45b150fe426624080abf903242af3ac201 Mon Sep 17 00:00:00 2001
-From: Jakub Filak <jfilak@redhat.com>
-Date: Tue, 23 Feb 2016 15:40:17 +0100
-Subject: [PATCH] CCpp: turn off compat cores
-
-Disable compat cores because with systemd>=229, RLIMIT_CORE is
-'unlimited' by default and RLIMIT_CORE!=0 was the signal to create a
-core file in the old way. So, abrt-ccpp-hook creates the old way cores
-everywhere on file systems by default and users don't know about it
-because they did not enable it manually via 'ulimit -c unlimited'.
-
-We could restore the old RLIMIT_CORE value by creating a systemd
-configuration file with 'DefaultLimitCORE=0' but that would not be a
-good solution for our users:
-* you have to reboot, otherwise the configuration has no effect
-* and therefore it is impossible to set the new value when
-  abrt-ccpp.service is stopped and the users who expect
-  RTLIMIT_CORE='unlimited' would be confused
-
-We should probably adopt the behaviour of systemd-coredump. However,
-that means that abrtd must not drop any problem it receives and should
-mark those problems that would be dropped as NOT-REPORTABLE to prevent
-users from filing bug reports for unfixable problems.
-
-Find more details at:
-https://github.com/systemd/systemd/issues/2643
-
-Signed-off-by: Jakub Filak <jfilak@redhat.com>
----
- src/hooks/CCpp.conf | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf
-index 025189a..edf66b7 100644
---- a/src/hooks/CCpp.conf
-+++ b/src/hooks/CCpp.conf
-@@ -7,7 +7,10 @@
- # If the original template string starts with "|", the string "core" is used
- # instead of the template.
- # For more information about naming core dump files see 'man 5 core'.
--MakeCompatCore = yes
-+#
-+# 'no' because of RLIMIT_CORE='unlimited' since systemd-229:
-+#   https://github.com/systemd/systemd/issues/2643
-+MakeCompatCore = no
- 
- # Do you want a copy of crashed binary be saved?
- # (useful, for example, when _deleted binary_ segfaults)
--- 
-2.5.0
-

diff --git a/0009-python3-addon-workaround-a-bug-in-traceback.patch b/0009-python3-addon-workaround-a-bug-in-traceback.patch
deleted file mode 100644
index e0290c6..0000000
--- a/0009-python3-addon-workaround-a-bug-in-traceback.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From cc20fe4e6223c6d7092ba6c4b1bb2cf902e795b3 Mon Sep 17 00:00:00 2001
-From: Jakub Filak <jfilak@redhat.com>
-Date: Mon, 7 Mar 2016 15:21:14 +0100
-Subject: [PATCH] python3 addon: workaround a bug in traceback
-
-This commit re-enables the python3 exception handler for python >= 3.5
-without it, no Python3 uncaught exceptions can be detected.
-
-See the following Bugzilla bug for more details:
-https://bugzilla.redhat.com/show_bug.cgi?id=1315228
-
-Signed-off-by: Jakub Filak <jfilak@redhat.com>
----
- src/hooks/abrt_exception_handler3.py.in | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/hooks/abrt_exception_handler3.py.in b/src/hooks/abrt_exception_handler3.py.in
-index f45af86..2800975 100644
---- a/src/hooks/abrt_exception_handler3.py.in
-+++ b/src/hooks/abrt_exception_handler3.py.in
-@@ -173,8 +173,8 @@ def handle_exception(etype, value, tb):
- 
-         if tb is not None and etype != IndentationError:
-             tblast = traceback.extract_tb(tb, limit=None)
--            if len(tblast):
--                tblast = tblast[len(tblast) - 1]
-+            if tblast:
-+                tblast = tuple(tblast[-1])
-             extxt = traceback.format_exception_only(etype, value)
-             if tblast and len(tblast) > 3:
-                 ll = []
--- 
-2.5.0
-

diff --git a/0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch b/0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch
deleted file mode 100644
index 9d55553..0000000
--- a/0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From a836ddd2277b05e1d7404cf6480a3ed8cc4807a4 Mon Sep 17 00:00:00 2001
-From: Matej Habrnal <mhabrnal@redhat.com>
-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 <mhabrnal@redhat.com>
----
- 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/0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch b/0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch
deleted file mode 100644
index 07169a3..0000000
--- a/0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 2c48b73b5d449df26053d5d95f98f2ef01610d46 Mon Sep 17 00:00:00 2001
-From: Matej Habrnal <mhabrnal@redhat.com>
-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 <mhabrnal@redhat.com>
----
- 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/0014-Add-basic-documentation.patch b/0014-Add-basic-documentation.patch
deleted file mode 100644
index 74da14f..0000000
--- a/0014-Add-basic-documentation.patch
+++ /dev/null
@@ -1,282 +0,0 @@
-From 0020bf80cda35ee0ce0ecf91023f3abcc1c4d26d Mon Sep 17 00:00:00 2001
-From: Jakub Filak <jfilak@redhat.com>
-Date: Sat, 20 Feb 2016 08:27:32 +0100
-Subject: [PATCH] Add basic documentation
-
-Signed-off-by: Jakub Filak <jfilak@redhat.com>
----
- 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-Save-Vendor-and-GPG-Fingerprint.patch b/0021-Save-Vendor-and-GPG-Fingerprint.patch
deleted file mode 100644
index 4f9f382..0000000
--- a/0021-Save-Vendor-and-GPG-Fingerprint.patch
+++ /dev/null
@@ -1,232 +0,0 @@
-From 451e57fc509f401bb586e7db88256923d47c38f7 Mon Sep 17 00:00:00 2001
-From: Matej Habrnal <mhabrnal@redhat.com>
-Date: Tue, 9 Feb 2016 16:53:21 +0100
-Subject: [PATCH] Save Vendor and GPG Fingerprint
-
-Red Hat keys can be found at:
-  https://access.redhat.com/security/team/key
-
-Related: #1258474
----
- src/daemon/abrt-action-save-package-data.c    | 34 ++++++++++++++++++++-----
- src/daemon/abrt-action-save-package-data.conf |  7 ++++++
- src/daemon/rpm.c                              | 36 +++++++++++++++++++--------
- src/daemon/rpm.h                              | 15 +++++++++++
- src/plugins/abrt-action-save-kernel-data      |  6 +++++
- 5 files changed, 82 insertions(+), 16 deletions(-)
-
-diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c
-index 72c9878..05cbd1a 100644
---- a/src/daemon/abrt-action-save-package-data.c
-+++ b/src/daemon/abrt-action-save-package-data.c
-@@ -231,6 +231,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch
-     char *executable = NULL;
-     char *rootdir = NULL;
-     char *package_short_name = NULL;
-+    char *fingerprint = NULL;
-     struct pkg_envra *pkg_name = NULL;
-     char *component = NULL;
-     int error = 1;
-@@ -324,13 +325,12 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch
-         goto ret; /* return 1 (failure) */
-     }
- 
--    if (settings_bOpenGPGCheck)
-+    fingerprint = rpm_get_fingerprint(package_short_name);
-+    if (!(fingerprint != NULL && rpm_fingerprint_is_imported(fingerprint))
-+         && settings_bOpenGPGCheck)
-     {
--        if (!rpm_chk_fingerprint(package_short_name))
--        {
--            log("Package '%s' isn't signed with proper key", package_short_name);
--            goto ret; /* return 1 (failure) */
--        }
-+        log("Package '%s' isn't signed with proper key", package_short_name);
-+        goto ret; /* return 1 (failure) */
-         /* We used to also check the integrity of the executable here:
-          *  if (!CheckHash(package_short_name.c_str(), executable)) BOOM();
-          * Checking the MD5 sum requires to run prelink to "un-prelink" the
-@@ -353,6 +353,27 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch
-         dd_save_text(dd, FILENAME_PKG_VERSION, pkg_name->p_version);
-         dd_save_text(dd, FILENAME_PKG_RELEASE, pkg_name->p_release);
-         dd_save_text(dd, FILENAME_PKG_ARCH, pkg_name->p_arch);
-+        dd_save_text(dd, FILENAME_PKG_VENDOR, pkg_name->p_vendor);
-+
-+        if (fingerprint)
-+        {
-+            /* 16 character + 3 spaces + 1 '\0' + 2 Bytes for errors :) */
-+            char key_fingerprint[22] = {0};
-+
-+            /* The condition is just a defense against errors */
-+            for (size_t i = 0, j = 0; j < sizeof(key_fingerprint) - 2; )
-+            {
-+                key_fingerprint[j++] = toupper(fingerprint[i++]);
-+
-+                if (fingerprint[i] == '\0')
-+                    break;
-+
-+                if (!(i & (0x3)))
-+                    key_fingerprint[j++] = ' ';
-+            }
-+
-+            dd_save_text(dd, FILENAME_PKG_FINGERPRINT, key_fingerprint);
-+        }
-     }
- 
-     if (component)
-@@ -369,6 +390,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name, const ch
-     free(package_short_name);
-     free_pkg_envra(pkg_name);
-     free(component);
-+    free(fingerprint);
- 
-     return error;
- }
-diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf
-index 58f5061..295e03a 100644
---- a/src/daemon/abrt-action-save-package-data.conf
-+++ b/src/daemon/abrt-action-save-package-data.conf
-@@ -3,6 +3,13 @@
- # the list of public keys used to check the signature is
- # in the file gpg_keys
- #
-+# How can I check the GPG key used to sign an installed pacakge on
-+# Red hat Enterprise Linux:
-+# https://access.redhat.com/solutions/1120013
-+#
-+# Product Signing (GPG) Keys:
-+# https://access.redhat.com/security/team/key
-+#
- OpenGPGCheck = yes
- 
- # Blacklisted packages
-diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c
-index b613f77..e99b960 100644
---- a/src/daemon/rpm.c
-+++ b/src/daemon/rpm.c
-@@ -99,7 +99,22 @@ void rpm_load_gpgkey(const char* filename)
- 
- int rpm_chk_fingerprint(const char* pkg)
- {
--    int ret = 0;
-+    char *fingerprint = rpm_get_fingerprint(pkg);
-+    int res = 0;
-+    if (fingerprint)
-+        res = rpm_fingerprint_is_imported(fingerprint);
-+    free(fingerprint);
-+    return res;
-+}
-+
-+int rpm_fingerprint_is_imported(const char* fingerprint)
-+{
-+    return !!g_list_find_custom(list_fingerprints, fingerprint, (GCompareFunc)g_strcmp0);
-+}
-+
-+char *rpm_get_fingerprint(const char *pkg)
-+{
-+    char *fingerprint = NULL;
-     char *pgpsig = NULL;
-     const char *errmsg = NULL;
- 
-@@ -117,20 +132,15 @@ int rpm_chk_fingerprint(const char* pkg)
-         goto error;
-     }
- 
--    {
--        char *pgpsig_tmp = strstr(pgpsig, " Key ID ");
--        if (pgpsig_tmp)
--        {
--            pgpsig_tmp += sizeof(" Key ID ") - 1;
--            ret = g_list_find_custom(list_fingerprints, pgpsig_tmp, (GCompareFunc)g_strcmp0) != NULL;
--        }
--    }
-+    char *pgpsig_tmp = strstr(pgpsig, " Key ID ");
-+    if (pgpsig_tmp)
-+        fingerprint = xstrdup(pgpsig_tmp + sizeof(" Key ID ") - 1);
- 
- error:
-     free(pgpsig);
-     rpmdbFreeIterator(iter);
-     rpmtsFree(ts);
--    return ret;
-+    return fingerprint;
- }
- 
- /*
-@@ -256,6 +266,7 @@ pkg_add_id(name);
- pkg_add_id(version);
- pkg_add_id(release);
- pkg_add_id(arch);
-+pkg_add_id(vendor);
- 
- // caller is responsible to free returned value
- struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_or_NULL)
-@@ -303,6 +314,10 @@ struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_
-     if (r)
-         goto error;
- 
-+    r = pkg_add_vendor(header, p);
-+    if (r)
-+        goto error;
-+
-     p->p_nvr = xasprintf("%s-%s-%s", p->p_name, p->p_version, p->p_release);
- 
-     rpmdbFreeIterator(iter);
-@@ -322,6 +337,7 @@ void free_pkg_envra(struct pkg_envra *p)
-     if (!p)
-         return;
- 
-+    free(p->p_vendor);
-     free(p->p_epoch);
-     free(p->p_name);
-     free(p->p_version);
-diff --git a/src/daemon/rpm.h b/src/daemon/rpm.h
-index 1b90368..89aa088 100644
---- a/src/daemon/rpm.h
-+++ b/src/daemon/rpm.h
-@@ -38,6 +38,7 @@ struct pkg_envra {
-     char *p_version;
-     char *p_release;
-     char *p_arch;
-+    char *p_vendor;
- };
- 
- void free_pkg_envra(struct pkg_envra *p);
-@@ -69,6 +70,20 @@ void rpm_load_gpgkey(const char* filename);
- int rpm_chk_fingerprint(const char* pkg);
- 
- /**
-+ * A function, which checks if the given finger print is imported.
-+ * @param pkg A package name.
-+ * @return 1 if imported, otherwise (not-imported, or error) 0
-+ */
-+int rpm_fingerprint_is_imported(const char* fingerprint);
-+
-+/**
-+ * A function, which returns package's finger print
-+ * @param pkg A package name.
-+ * @return NULL if not-valid, otherwise malloced NULL-terminated string.
-+ */
-+char *rpm_get_fingerprint(const char* pkg);
-+
-+/**
-  * Gets a package name. This package contains particular
-  * file. If the file doesn't belong to any package, empty string is
-  * returned.
-diff --git a/src/plugins/abrt-action-save-kernel-data b/src/plugins/abrt-action-save-kernel-data
-index f8b18f0..de9670a 100755
---- a/src/plugins/abrt-action-save-kernel-data
-+++ b/src/plugins/abrt-action-save-kernel-data
-@@ -76,3 +76,9 @@ 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
-+rpm -q --qf "%{vendor}\n" "$package" > pkg_vendor
-+
-+FINGERPRINT=$(rpm -q --qf "%|SIGGPG?{%{SIGGPG:pgpsig}}:{%{SIGPGP:pgpsig}}|" "$package" 2>/dev/null | tail -1)
-+if [ -n "$FINGERPRINT" -a "_(none)" != "_$FINGERPRINT" ]; then
-+    echo $FINGERPRINT | sed 's/.*Key ID \(....\)\(....\)\(....\)\(....\)$/\U\1 \U\2 \U\3 \U\4/' > pkg_fingerprint
-+fi
--- 
-2.5.5
-

diff --git a/abrt.spec b/abrt.spec
index b4d9745..19b5f36 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -43,13 +43,13 @@
     %define docdirversion -%{version}
 %endif
 
-%define libreport_ver 2.7.0
+%define libreport_ver 2.7.1
 %define satyr_ver 0.19
 
 Summary: Automatic bug detection and reporting tool
 Name: abrt
-Version: 2.8.0
-Release: 5%{?dist}
+Version: 2.8.1
+Release: 1%{?dist}
 License: GPLv2+
 Group: Applications/System
 URL: https://abrt.readthedocs.org/
@@ -57,33 +57,6 @@ 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
-Patch0009: 0009-python3-addon-workaround-a-bug-in-traceback.patch
-#Patch0010: 0010-testsuite-fix-ccpp-plugin-debug-test.patch
-#Patch0011: 0011-testsuite-rlAssertRpm-doesn-t-work-with-abrt-addon.patch
-Patch0012: 0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch
-Patch0013: 0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch
-Patch0014: 0014-Add-basic-documentation.patch
-#Patch0015: 0015-spec-README-README.md.patch
-#Patch0016: 0016-testsuite-compat-cores-add-include-to-the-loop.c-fil.patch
-#Patch0017: 0017-testsuite-changes-due-to-turn-off-compat-cores.patch
-#Patch0018: 0018-testsuite-yum-to-dnf.patch
-#Patch0019: 0019-testsuite-avoid-unintentional-removal-of-package-man.patch
-#Patch0020: 0020-testsuite-tell-the-runner-about-problem-sub-director.patch
-Patch0021: 0021-Save-Vendor-and-GPG-Fingerprint.patch
-#Patch0022: 0022-testsuite-add-tests-for-pgk_vendor-and-pkg_fingerpri.patch
-#Patch0023: 0023-testsuite-add-rhtsupport-discourage-tests.patch
-#Patch0024: 0024-testsuite-add-a-per-test-timeout-for-15m.patch
-#Patch0025: 0025-testsuite-reporter-rhtsupport-should-attach-whole-du.patch
-#Patch0026: 0026-testsuite-rhts-problem-report-api-correct-phase-test.patch
-#Patch0027: 0027-testsuite-test-for-reporter-mailx-email-formatting.patch
 
 # don't remove this patch, packages in rawhide are not signed!
 Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch
@@ -957,11 +930,9 @@ killall abrt-dbus >/dev/null 2>&1 || :
 %{_bindir}/abrt-dump-oops
 %{_bindir}/abrt-dump-journal-oops
 %{_bindir}/abrt-action-analyze-oops
-%{_bindir}/abrt-action-save-kernel-data
 %{_mandir}/man1/abrt-dump-oops.1*
 %{_mandir}/man1/abrt-dump-journal-oops.1*
 %{_mandir}/man1/abrt-action-analyze-oops.1*
-%{_mandir}/man1/abrt-action-save-kernel-data.1*
 %{_mandir}/man5/abrt-oops.conf.5*
 
 %files addon-xorg
@@ -1114,6 +1085,23 @@ killall abrt-dbus >/dev/null 2>&1 || :
 %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh
 
 %changelog
+* Wed May 25 2016 Matej Habrnal <mhabrnal@redhat.com> 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
+- a-retrace-client: format security
+- daemon: avoid infinite crash loops
+- spec: drop abrt-action-save-kernel-data bits
+
 * Fri Apr 08 2016 Matej Habrnal <mhabrnal@redhat.com> 2.8.0-5
 - spec: README -> README.md
 - Add basic documentation

diff --git a/sources b/sources
index 0777d20..d80a9e2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ab0744ee52a36c0d647ae1af9a356090  abrt-2.8.0.tar.gz
+2928780ccb430f0972cc50a33a956772  abrt-2.8.1.tar.gz

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-08-03 11:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-03 11:04 [rpms/abrt] update-2.17.9-f44: New upstream release 2.8.1 Matej Habrnal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox